File tree Expand file tree Collapse file tree 2 files changed +48
-6
lines changed Expand file tree Collapse file tree 2 files changed +48
-6
lines changed Original file line number Diff line number Diff line change @@ -8732,18 +8732,18 @@ interface Node extends EventTarget {
8732
8732
readonly attributes: NamedNodeMap;
8733
8733
readonly baseURI: string | null;
8734
8734
readonly childNodes: NodeList;
8735
- readonly firstChild: Node;
8736
- readonly lastChild: Node;
8735
+ readonly firstChild: Node | null ;
8736
+ readonly lastChild: Node | null ;
8737
8737
readonly localName: string | null;
8738
8738
readonly namespaceURI: string | null;
8739
- readonly nextSibling: Node;
8739
+ readonly nextSibling: Node | null ;
8740
8740
readonly nodeName: string;
8741
8741
readonly nodeType: number;
8742
8742
nodeValue: string | null;
8743
8743
readonly ownerDocument: Document;
8744
- readonly parentElement: HTMLElement;
8745
- readonly parentNode: Node;
8746
- readonly previousSibling: Node;
8744
+ readonly parentElement: HTMLElement | null ;
8745
+ readonly parentNode: Node | null ;
8746
+ readonly previousSibling: Node | null ;
8747
8747
textContent: string | null;
8748
8748
appendChild(newChild: Node): Node;
8749
8749
cloneNode(deep?: boolean): Node;
Original file line number Diff line number Diff line change 845
845
"interface" : " History" ,
846
846
"name" : " replaceState" ,
847
847
"signatures" : [" replaceState(data: any, title: string, url?: string | null): void" ]
848
+ },
849
+ {
850
+ "kind" : " property" ,
851
+ "interface" : " Node" ,
852
+ "readonly" : true ,
853
+ "name" : " firstChild" ,
854
+ "type" : " Node | null"
855
+ },
856
+ {
857
+ "kind" : " property" ,
858
+ "interface" : " Node" ,
859
+ "readonly" : true ,
860
+ "name" : " lastChild" ,
861
+ "type" : " Node | null"
862
+ },
863
+ {
864
+ "kind" : " property" ,
865
+ "interface" : " Node" ,
866
+ "readonly" : true ,
867
+ "name" : " nextSibling" ,
868
+ "type" : " Node | null"
869
+ },
870
+ {
871
+ "kind" : " property" ,
872
+ "interface" : " Node" ,
873
+ "readonly" : true ,
874
+ "name" : " previousSibling" ,
875
+ "type" : " Node | null"
876
+ },
877
+ {
878
+ "kind" : " property" ,
879
+ "interface" : " Node" ,
880
+ "readonly" : true ,
881
+ "name" : " parentNode" ,
882
+ "type" : " Node | null"
883
+ },
884
+ {
885
+ "kind" : " property" ,
886
+ "interface" : " Node" ,
887
+ "readonly" : true ,
888
+ "name" : " parentElement" ,
889
+ "type" : " HTMLElement | null"
848
890
}
849
891
]
You can’t perform that action at this time.
0 commit comments