interface DocumentType {
    name: string;
    nodeName: "#documentType";
    parentNode: null | ParentNode;
    publicId: string;
    sourceCodeLocation?: null | Location;
    systemId: string;
}

Properties

name: string

Document type name.

nodeName: "#documentType"

The name of the node.

parentNode: null | ParentNode

Parent node.

publicId: string

Document type public identifier.

sourceCodeLocation?: null | Location

Comment source code location info. Available if location info is enabled.

systemId: string

Document type system identifier.

Generated using TypeDoc