Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/ogone/src/ogone.dom.d.ts>ChildNode

Advanced Web Composition for Future
Latest
interface ChildNode
implements Node
import { type ChildNode } from "https://deno.land/x/ogone@revb3/src/ogone.dom.d.ts";

Methods

after(...nodes: (Node | string)[]): void

Inserts nodes just after node, while replacing strings in nodes with equivalent Text nodes.

Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.

before(...nodes: (Node | string)[]): void

Inserts nodes just before node, while replacing strings in nodes with equivalent Text nodes.

Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.

remove(): void

Removes node.

replaceWith(...nodes: (Node | string)[]): void

Replaces node with nodes, while replacing strings in nodes with equivalent Text nodes.

Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.