File tree 2 files changed +14
-0
lines changed
2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -5126,6 +5126,7 @@ interface HTMLInputElement extends HTMLElement {
5126
5126
* Returns whether an element will successfully validate based on forms validation rules and constraints.
5127
5127
*/
5128
5128
willValidate: boolean;
5129
+ minLength: number;
5129
5130
/**
5130
5131
* Returns whether a form will validate when it is submitted, without having to submit it.
5131
5132
*/
@@ -6631,6 +6632,7 @@ interface HTMLTextAreaElement extends HTMLElement {
6631
6632
* Sets or retrieves how to handle wordwrapping in the object.
6632
6633
*/
6633
6634
wrap: string;
6635
+ minLength: number;
6634
6636
/**
6635
6637
* Returns whether a form will validate when it is submitted, without having to submit it.
6636
6638
*/
Original file line number Diff line number Diff line change 400
400
"interface" : " Element" ,
401
401
"name" : " getElementsByTagName" ,
402
402
"signatures" : [" getElementsByTagName(tagname: \" picture\" ): NodeListOf<HTMLPictureElement>" ]
403
+ },
404
+ {
405
+ "kind" : " property" ,
406
+ "interface" : " HTMLInputElement" ,
407
+ "name" : " minLength" ,
408
+ "type" : " number"
409
+ },
410
+ {
411
+ "kind" : " property" ,
412
+ "interface" : " HTMLTextAreaElement" ,
413
+ "name" : " minLength" ,
414
+ "type" : " number"
403
415
}
404
416
]
You can’t perform that action at this time.
0 commit comments