linkedom
Version:
A triple-linked lists based DOM implementation
13 lines (12 loc) • 366 B
TypeScript
export function isConnected({ ownerDocument, parentNode }: {
ownerDocument: any;
parentNode: any;
}): boolean;
export function parentElement({ parentNode }: {
parentNode: any;
}): any;
export function previousSibling({ [PREV]: prev }: {
"__@PREV@38032": any;
}): any;
export function nextSibling(node: any): any;
import { PREV } from "./symbols.js";