import { Node } from "https://deno.land/x/html_parser@v0.1.3/src/Node.ts";
This object will be used as the prototype for Nodes when creating a DOM-Level-1-compliant structure.
Constructors
new
Node(type: ElementType)Properties
The end index of the node. Requires withEndIndices
on the handler to be `true.
next: Node | null
Next sibling
nextSibling: Node | null
parent: NodeWithChildren | null
Parent of the node
parentNode: NodeWithChildren | null
prev: Node | null
Previous sibling
previousSibling: Node | null