Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DOMImplementation

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

interface DOMImplementation {
createDocument(
namespace: string | null,
qualifiedName: string | null,
doctype?: DocumentType | null,
): XMLDocument;
createDocumentType(
qualifiedName: string,
publicId: string,
systemId: string,
): DocumentType;
createHTMLDocument(title?: string): Document;
hasFeature(...args: any[]): true;
}
var DOMImplementation: {
prototype: DOMImplementation;
}
;

§Methods

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