File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -7344,7 +7344,7 @@ interface HTMLInputElement extends HTMLElement {
7344
7344
* When present, marks an element that can't be submitted without a value.
7345
7345
*/
7346
7346
required: boolean;
7347
- selectionDirection: string | null;
7347
+ selectionDirection: "forward" | "backward" | "none" | null;
7348
7348
/**
7349
7349
* Gets or sets the end position or offset of a text selection.
7350
7350
*/
@@ -8935,7 +8935,7 @@ interface HTMLTextAreaElement extends HTMLElement {
8935
8935
* Sets or retrieves the number of horizontal rows contained in the object.
8936
8936
*/
8937
8937
rows: number;
8938
- selectionDirection: string ;
8938
+ selectionDirection: "forward" | "backward" | "none" ;
8939
8939
/**
8940
8940
* Gets or sets the end position or offset of a text selection.
8941
8941
*/
Original file line number Diff line number Diff line change 1476
1476
"read-only" : 1 ,
1477
1477
"override-type" : " HTMLFormElement | null"
1478
1478
},
1479
+ "selectionDirection" : {
1480
+ "name" : " selectionDirection" ,
1481
+ "override-type" : " \" forward\" | \" backward\" | \" none\" "
1482
+ },
1479
1483
"valueAsDate" : {
1480
1484
"name" : " valueAsDate" ,
1481
1485
"override-type" : " Date | null"
1668
1672
"labels" : {
1669
1673
"name" : " labels" ,
1670
1674
"override-type" : " NodeListOf<HTMLLabelElement>"
1675
+ },
1676
+ "selectionDirection" : {
1677
+ "name" : " selectionDirection" ,
1678
+ "override-type" : " \" forward\" | \" backward\" | \" none\" "
1671
1679
}
1672
1680
}
1673
1681
},
You can’t perform that action at this time.
0 commit comments