Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/windmill/node_modules/evt/lib/types/lib.dom.d.ts>DOMImplementation

Windmill deno client (separated from the main repo because most of the code is auto-generated from the openapi and not worth committing)
Go to Latest
interface DOMImplementation
import { type DOMImplementation } from "https://deno.land/x/windmill@v1.333.5/node_modules/evt/lib/types/lib.dom.d.ts";

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