libxml2-wasm
    Preparing search index...

    Interface ErrorDetail

    interface ErrorDetail {
        col: number;
        file?: string;
        level: number;
        line: number;
        message: string;
        xpath?: string;
    }
    Index

    Properties

    col: number

    The column number in the XML file where the error occurred.

    file?: string

    The name of the XML file in which the error occurred.

    level: number

    The severity of the diagnostic (libxml2 xmlErrorLevel): 1 = warning, 2 = error, 3 = fatal.

    line: number

    The line number in the xml file where the error occurred.

    message: string

    The error message during processing.

    xpath?: string

    The XPath to the node associated with the error, when available.