File tree 3 files changed +14
-0
lines changed
3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -5766,6 +5766,7 @@ interface HTMLInputElement extends HTMLElement {
5766
5766
* Returns whether an element will successfully validate based on forms validation rules and constraints.
5767
5767
*/
5768
5768
willValidate: boolean;
5769
+ minLength: number;
5769
5770
/**
5770
5771
* Returns whether a form will validate when it is submitted, without having to submit it.
5771
5772
*/
@@ -7270,6 +7271,7 @@ interface HTMLTextAreaElement extends HTMLElement {
7270
7271
* Sets or retrieves how to handle wordwrapping in the object.
7271
7272
*/
7272
7273
wrap: string;
7274
+ minLength: number;
7273
7275
/**
7274
7276
* Returns whether a form will validate when it is submitted, without having to submit it.
7275
7277
*/
Original file line number Diff line number Diff line change 372
372
"kind" : " interface" ,
373
373
"name" : " IDBArrayKey" ,
374
374
"extends" : " Array<IDBValidKey>"
375
+ },
376
+ {
377
+ "kind" : " property" ,
378
+ "interface" : " HTMLInputElement" ,
379
+ "name" : " minLength" ,
380
+ "type" : " number"
381
+ },
382
+ {
383
+ "kind" : " property" ,
384
+ "interface" : " HTMLTextAreaElement" ,
385
+ "name" : " minLength" ,
386
+ "type" : " number"
375
387
}
376
388
]
You can’t perform that action at this time.
0 commit comments