Prelude API
    Preparing search index...

    Type Alias Doctype

    Document type declaration. The internal subset, if any, is kept verbatim (without the enclosing brackets) and is not interpreted: no entity or attribute defaults are applied, and nothing external is ever fetched.

    type Doctype = {
        internalSubset: undefined | string;
        name: string;
        publicId: undefined | string;
        systemId: undefined | string;
        type: "Doctype";
    }
    Index
    internalSubset: undefined | string
    name: string
    publicId: undefined | string
    systemId: undefined | string
    type: "Doctype"