Skip to content

Commit d1d1946

Browse files
committed
fix(types): remove Node#namespaceURI
It's available only on Element/Attr.
1 parent e3f46d9 commit d1d1946

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

baselines/dom.generated.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10271,8 +10271,6 @@ interface Node extends EventTarget {
1027110271
* Returns the last child.
1027210272
*/
1027310273
readonly lastChild: (ChildNode & Node) | null;
10274-
/** @deprecated */
10275-
readonly namespaceURI: string | null;
1027610274
/**
1027710275
* Returns the next sibling.
1027810276
*/

inputfiles/overridingTypes.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -759,12 +759,6 @@
759759
"lastChild": {
760760
"override-type": "(ChildNode & Node) | null"
761761
},
762-
"namespaceURI": {
763-
"name":"namespaceURI",
764-
"read-only": 1,
765-
"override-type": "string | null",
766-
"deprecated": 1
767-
},
768762
"nextSibling": {
769763
"override-type": "(ChildNode & Node) | null"
770764
},

0 commit comments

Comments
 (0)