Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/gauntlet/imports/happy_dom.ts>INode

Work-in-progress front-end tool which does put a smile on my face
Latest
interface INode
implements IEventTarget
Re-export
import { type INode } from "https://deno.land/x/gauntlet@v0.0.9/imports/happy_dom.ts";

Properties

readonly
ownerDocument: IDocument
readonly
parentNode: INode
readonly
parentElement: IElement
readonly
nodeType: number
readonly
childNodes: INode[]
isConnected: boolean
readonly
nodeValue: string
readonly
nodeName: string
readonly
previousSibling: INode
readonly
nextSibling: INode
readonly
firstChild: INode
readonly
lastChild: INode
textContent: string

Methods

optional
connectedCallback(): void
optional
disconnectedCallback(): void
getRootNode(options?: { composed: boolean; }): INode
cloneNode(deep: boolean): INode
appendChild(node: INode): INode
removeChild(node: INode): INode
insertBefore(newNode: INode, referenceNode?: INode | null): INode
replaceChild(newChild: INode, oldChild: INode): INode
toString(): string