Port generated lib files

This commit is contained in:
Mohamed Hegazy 2018-07-31 14:00:25 -07:00
parent 6e6e570d57
commit aa632582a3

View File

@ -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.
*/