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;createHTMLDocument(title?: string): Document;
hasFeature(...args: any[]): true;
}var DOMImplementation: {
prototype: DOMImplementation;
new (): DOMImplementation;
};§Methods
§
createDocument(
[src]namespace: string | null,
qualifiedName: string | null,
doctype?: DocumentType | null,
): XMLDocument