Skip to content

Commit 04d7dce

Browse files
committed
Port #296
1 parent 213a4eb commit 04d7dce

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

baselines/dom.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9348,7 +9348,7 @@ interface NavigatorUserMedia {
93489348

93499349
interface Node extends EventTarget {
93509350
readonly baseURI: string | null;
9351-
readonly childNodes: NodeList;
9351+
readonly childNodes: NodeListOf<Node & ChildNode>;
93529352
readonly firstChild: Node | null;
93539353
readonly lastChild: Node | null;
93549354
readonly localName: string | null;

inputfiles/overridingTypes.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,9 @@
395395
"name": "parentElement",
396396
"read-only": "1",
397397
"override-type": "HTMLElement | null"
398+
},
399+
"childNodes": {
400+
"override-type": "NodeListOf<Node & ChildNode>"
398401
}
399402
}
400403
}
@@ -1875,7 +1878,6 @@
18751878
]
18761879
}
18771880
}
1878-
18791881
}
18801882
},
18811883
"dictionaries": {

0 commit comments

Comments
 (0)