Files
DefinitelyTyped/types/dom4/index.d.ts
Gilad Gray 6361a8f219 update dom4 types for v2.0 (#23178)
* update dom4 types for v2.0

> **New v2:** Both `query` and `queryAll` have been removed, while CSS `:scope` selector has been added.

* spelling
2018-01-25 09:56:18 -08:00

71 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Type definitions for dom4 v2.0
// Project: https://github.com/WebReflection/dom4
// Definitions by: Adi Dahiya <https://github.com/adidahiya>, Gilad Gray <https://github.com/giladgray>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/**
* https://dom.spec.whatwg.org/#parentnode
*/
interface ParentNode {
/**
* Returns the child elements.
*/
readonly children: HTMLCollection;
/**
* Inserts `nodes` after the last child of this node, while replacing strings with equivalent `Text` nodes.
*/
append(...nodes: Array<Node | string>): void;
/**
* Inserts `nodes` before the first child of this node, while replacing strings with equivalent `Text` nodes.
*/
prepend(...nodes: Array<Node | string>): void;
}
/**
* https://dom.spec.whatwg.org/#childnode
*/
interface ChildNode {
/**
* Inserts `nodes` just after this node, while replacing strings with equivalent `Text` nodes.
*/
after(...nodes: Array<Node | string>): void;
/**
* Inserts `nodes` just before this node, while replacing strings with equivalent `Text` nodes.
*/
before(...nodes: Array<Node | string>): void;
/**
* Replaces this node with `nodes`, while replacing strings in nodes with equivalent Text nodes.
*/
replaceWith(...nodes: Array<Node | string>): void;
/**
* Removes this node.
*/
remove(): void;
}
interface Element extends ParentNode {
/**
* Returns the first (starting at element) inclusive ancestor that matches selectors, and null otherwise.
*/
closest(selectors: string): Element | null;
/**
* Returns true if matching selectors against elements root yields element, and false otherwise.
*/
matches(selectors: string): boolean;
}
interface Elements extends ElementTraversal, ParentNode, Array<Element> {
}
interface Document extends ElementTraversal, ParentNode {
}
interface DocumentFragment extends ElementTraversal, ParentNode {
}