Interface DOMImplementation
Methods
createDocument
- createDocument(namespace: null | string, qualifiedName: null | string, doctype?: null | DocumentType): XMLDocument
Parameters
- namespace: null | string
- qualifiedName: null | string
Optional
doctype: null | DocumentType
createDocumentType
- createDocumentType(qualifiedName: string, publicId: string, systemId: string): DocumentType
Parameters
- qualifiedName: string
- publicId: string
- systemId: string
createHTMLDocument
- createHTMLDocument(title?: string): Document
hasFeature
- hasFeature(...args: any[]): true
Returns true
An object providing methods which are not dependent on any particular document. Such an object is returned by the Document.implementation property.
MDN Reference