UNPKG

linkedom

Version:

A triple-linked lists based DOM implementation

8 lines (7 loc) 276 B
export function parseJSON(value: string | jsdonValue[]): HTMLDocument; export function toJSON(node: Document | Element): jsdonValue[]; /** * - either a node type or its content */ export type jsdonValue = number | string; import { HTMLDocument } from "../html/document.js";