DocumentType
A Node containing a doctype.
interface DocumentType extends Node, ChildNode {
readonly name: string;
readonly ownerDocument: Document;
readonly publicId: string;
readonly systemId: string;
}var DocumentType: {
prototype: DocumentType;
new (): DocumentType;
};