File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -8747,18 +8747,18 @@ interface Node extends EventTarget {
8747
8747
readonly attributes: NamedNodeMap;
8748
8748
readonly baseURI: string | null;
8749
8749
readonly childNodes: NodeList;
8750
- readonly firstChild: Node;
8751
- readonly lastChild: Node;
8750
+ readonly firstChild: Node | null ;
8751
+ readonly lastChild: Node | null ;
8752
8752
readonly localName: string | null;
8753
8753
readonly namespaceURI: string | null;
8754
- readonly nextSibling: Node;
8754
+ readonly nextSibling: Node | null ;
8755
8755
readonly nodeName: string;
8756
8756
readonly nodeType: number;
8757
8757
nodeValue: string | null;
8758
8758
readonly ownerDocument: Document;
8759
- readonly parentElement: HTMLElement;
8760
- readonly parentNode: Node;
8761
- readonly previousSibling: Node;
8759
+ readonly parentElement: HTMLElement | null ;
8760
+ readonly parentNode: Node | null ;
8761
+ readonly previousSibling: Node | null ;
8762
8762
textContent: string | null;
8763
8763
appendChild(newChild: Node): Node;
8764
8764
cloneNode(deep?: boolean): Node;
You can’t perform that action at this time.
0 commit comments