mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-05 08:11:30 -06:00
Port generated lib files
This commit is contained in:
parent
6e6e570d57
commit
aa632582a3
8
src/lib/dom.generated.d.ts
vendored
8
src/lib/dom.generated.d.ts
vendored
@ -3050,7 +3050,7 @@ declare var CharacterData: {
|
||||
new(): CharacterData;
|
||||
};
|
||||
|
||||
interface ChildNode {
|
||||
interface ChildNode extends Node {
|
||||
/**
|
||||
* Inserts nodes just after node, while replacing strings in nodes with equivalent Text nodes.
|
||||
* Throws a "HierarchyRequestError" DOMException if the constraints of
|
||||
@ -10215,11 +10215,11 @@ interface Node extends EventTarget {
|
||||
/**
|
||||
* Returns the children.
|
||||
*/
|
||||
readonly childNodes: NodeListOf<Node & ChildNode>;
|
||||
readonly childNodes: NodeListOf<ChildNode>;
|
||||
/**
|
||||
* Returns the first child.
|
||||
*/
|
||||
readonly firstChild: Node & ChildNode | null;
|
||||
readonly firstChild: ChildNode | null;
|
||||
/**
|
||||
* Returns true if node is connected and false otherwise.
|
||||
*/
|
||||
@ -10227,7 +10227,7 @@ interface Node extends EventTarget {
|
||||
/**
|
||||
* Returns the last child.
|
||||
*/
|
||||
readonly lastChild: Node & ChildNode | null;
|
||||
readonly lastChild: ChildNode | null;
|
||||
/**
|
||||
* Returns the next sibling.
|
||||
*/
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user