Skip to content

Commit 188b137

Browse files
committed
Merge pull request #9 from Microsoft/i1558
Change HTMLSelectElement.options type to HTMLSelectElement | HTMLCollection
2 parents 8d5fbfd + 279d913 commit 188b137

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

baselines/dom.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6136,7 +6136,7 @@ interface HTMLSelectElement extends HTMLElement {
61366136
* Sets or retrieves the name of the object.
61376137
*/
61386138
name: string;
6139-
options: HTMLSelectElement;
6139+
options: HTMLCollection;
61406140
/**
61416141
* When present, marks an element that can't be submitted without a value.
61426142
*/

inputfiles/overridingTypes.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,12 @@
206206
"new(array: Uint8ClampedArray, width: number, height: number): ImageData"
207207
]
208208
},
209+
{
210+
"kind": "property",
211+
"interface": "HTMLSelectElement",
212+
"name": "options",
213+
"type": "HTMLCollection"
214+
},
209215
{
210216
"kind": "property",
211217
"interface": "ImageData",

0 commit comments

Comments
 (0)