expat-wasm
    Preparing search index...

    Interface XmlEvents

    interface XmlEvents {
        attlistDecl: [
            elname: string,
            attname: string,
            attType: string,
            dflt: string,
            isrequired: boolean,
        ];
        characterData: [value: string];
        comment: [value: string];
        default: [value: string];
        destroy: [valid: boolean];
        elementDecl: [name: string, model: Model];
        endBase: [base: string];
        endCdataSection: [];
        endDoctypeDecl: [];
        endElement: [name: string];
        endNamespaceDecl: [prefix: string];
        entityDecl: [
            entityName: string,
            isParameterEntity: boolean,
            value: null
            | string,
            base: string,
            systemId: string,
            publicId: string,
            notationName: string,
        ];
        error: [error: unknown];
        notationDecl: [
            notationName: string,
            base: string,
            systemId: string,
            publicId: string,
        ];
        processingInstruction: [target: string, data: string];
        skippedEntity: [entityName: string, isParameterEntity: boolean];
        star: [name: string | symbol, ...args: any[]];
        startBase: [base: string];
        startCdataSection: [];
        startDoctypeDecl: [
            doctypeName: string,
            sysid: string,
            pubid: string,
            hasInternalSubset: boolean,
        ];
        startElement: [name: string, attribs: object];
        startNamespaceDecl: [prefix: string, nsURI: string];
        xmlDecl: [version: string, encoding: string, standalone: boolean];
    }
    Index

    Properties

    attlistDecl: [
        elname: string,
        attname: string,
        attType: string,
        dflt: string,
        isrequired: boolean,
    ]
    characterData: [value: string]
    comment: [value: string]
    default: [value: string]
    destroy: [valid: boolean]
    elementDecl: [name: string, model: Model]
    endBase: [base: string]
    endCdataSection: []
    endDoctypeDecl: []
    endElement: [name: string]
    endNamespaceDecl: [prefix: string]
    entityDecl: [
        entityName: string,
        isParameterEntity: boolean,
        value: null
        | string,
        base: string,
        systemId: string,
        publicId: string,
        notationName: string,
    ]
    error: [error: unknown]
    notationDecl: [
        notationName: string,
        base: string,
        systemId: string,
        publicId: string,
    ]
    processingInstruction: [target: string, data: string]
    skippedEntity: [entityName: string, isParameterEntity: boolean]
    star: [name: string | symbol, ...args: any[]]
    startBase: [base: string]
    startCdataSection: []
    startDoctypeDecl: [
        doctypeName: string,
        sysid: string,
        pubid: string,
        hasInternalSubset: boolean,
    ]
    startElement: [name: string, attribs: object]
    startNamespaceDecl: [prefix: string, nsURI: string]
    xmlDecl: [version: string, encoding: string, standalone: boolean]