interface Doctype {
    name: null | string;
    publicId: null | string;
    sourceCodeLocation?: null | Location;
    systemId: null | string;
}

Hierarchy

Properties

name: null | string

Document type name.

publicId: null | string

Document type public identifier.

sourceCodeLocation?: null | Location

Source code location info. Available if location info is enabled via SAXParserOptions.

systemId: null | string

Document type system identifier.

Generated using TypeDoc