We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ae23db commit 24a2b67Copy full SHA for 24a2b67
baselines/dom.generated.d.ts
@@ -10985,7 +10985,7 @@ interface Node extends EventTarget {
10985
/**
10986
* Returns the previous sibling.
10987
*/
10988
- readonly previousSibling: Node | null;
+ readonly previousSibling: ChildNode | null;
10989
textContent: string | null;
10990
appendChild<T extends Node>(newChild: T): T;
10991
inputfiles/overridingTypes.json
@@ -694,6 +694,9 @@
694
},
695
"nextSibling": {
696
"override-type": "ChildNode | null"
697
+ },
698
+ "previousSibling": {
699
+ "override-type": "ChildNode | null"
700
}
701
702
0 commit comments