Skip to main content
Module

x/evt/mod.ts>dom.DOMImplementation

💧EventEmitter's typesafe replacement
Go to Latest
interface dom.DOMImplementation
import { type dom } from "https://deno.land/x/evt@v2.4.13/mod.ts";
const { DOMImplementation } = dom;

An object providing methods which are not dependent on any particular document. Such an object is returned by the Document.implementation property.

Methods

createDocument(
namespaceURI: string | null,
qualifiedName: string | null,
doctype: DocumentType | null,
): Document
createDocumentType(
qualifiedName: string,
publicId: string,
systemId: string,
): DocumentType
createHTMLDocument(title?: string): Document
deprecated
hasFeature(...args: any[]): true