Skip to content

Commit aa63258

Browse files
committed
Port generated lib files
1 parent 6e6e570 commit aa63258

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib/dom.generated.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3050,7 +3050,7 @@ declare var CharacterData: {
30503050
new(): CharacterData;
30513051
};
30523052

3053-
interface ChildNode {
3053+
interface ChildNode extends Node {
30543054
/**
30553055
* Inserts nodes just after node, while replacing strings in nodes with equivalent Text nodes.
30563056
* Throws a "HierarchyRequestError" DOMException if the constraints of
@@ -10215,19 +10215,19 @@ interface Node extends EventTarget {
1021510215
/**
1021610216
* Returns the children.
1021710217
*/
10218-
readonly childNodes: NodeListOf<Node & ChildNode>;
10218+
readonly childNodes: NodeListOf<ChildNode>;
1021910219
/**
1022010220
* Returns the first child.
1022110221
*/
10222-
readonly firstChild: Node & ChildNode | null;
10222+
readonly firstChild: ChildNode | null;
1022310223
/**
1022410224
* Returns true if node is connected and false otherwise.
1022510225
*/
1022610226
readonly isConnected: boolean;
1022710227
/**
1022810228
* Returns the last child.
1022910229
*/
10230-
readonly lastChild: Node & ChildNode | null;
10230+
readonly lastChild: ChildNode | null;
1023110231
/**
1023210232
* Returns the next sibling.
1023310233
*/

0 commit comments

Comments
 (0)