Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

EnterElement

An interface describing the element type of the Enter Selection group elements created when invoking selection.enter().

interface EnterElement {
namespaceURI: string;
ownerDocument: Document;
appendChild(newChild: Node): Node;
insertBefore(newChild: Node, refChild: Node): Node;
querySelector(selectors: string): Element;
querySelectorAll(selectors: string): NodeListOf<Element>;
}

§Properties

§
namespaceURI: string
[src]
§
ownerDocument: Document
[src]

§Methods

§
appendChild(newChild: Node): Node
[src]
§
insertBefore(newChild: Node, refChild: Node): Node
[src]
§
querySelector(selectors: string): Element
[src]
§
querySelectorAll(selectors: string): NodeListOf<Element>
[src]