Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
interface DOMImplementation
import { type DOMImplementation } from "https://deno.land/x/yxz@0.17.0/typing/lib.dom.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(
namespace: string | null,
qualifiedName: string | null,
doctype?: DocumentType | null,
): XMLDocument
createDocumentType(
qualifiedName: string,
publicId: string,
systemId: string,
): DocumentType
createHTMLDocument(title?: string): Document
deprecated
hasFeature(...args: any[]): true