UNPKG

linkedom

Version:

A triple-linked lists based DOM implementation

12 lines (11 loc) 325 B
/** * @implements globalThis.DocumentType */ export class DocumentType extends Node implements globalThis.DocumentType { constructor(ownerDocument: any, name: any, publicId?: string, systemId?: string); name: any; publicId: string; systemId: string; toJSON(): any[]; } import { Node } from "./node.js";