circu.js
    Preparing search index...

    Interface XMLParserHandlers

    XML Parser Event Handlers

    interface XMLParserHandlers {
        characterData?: (data: string) => void;
        comment?: (data: string) => void;
        endCDATA?: () => void;
        endElement?: (name: string) => void;
        endNamespace?: (prefix: string | null) => void;
        processingInstruction?: (target: string, data: string) => void;
        startCDATA?: () => void;
        startElement?: (name: string, attrs: XMLAttributes) => void;
        startNamespace?: (prefix: string | null, uri: string) => void;
    }
    Index

    Properties

    characterData?: (data: string) => void

    Called when character data is encountered

    comment?: (data: string) => void

    Called when a comment is encountered

    endCDATA?: () => void

    Called at the end of a CDATA section

    endElement?: (name: string) => void

    Called when a closing tag is encountered

    endNamespace?: (prefix: string | null) => void

    Called when a namespace declaration ends

    processingInstruction?: (target: string, data: string) => void

    Called when a processing instruction is encountered

    startCDATA?: () => void

    Called at the start of a CDATA section

    startElement?: (name: string, attrs: XMLAttributes) => void

    Called when an opening tag is encountered

    startNamespace?: (prefix: string | null, uri: string) => void

    Called when a namespace declaration starts