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

Properties

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.

line: number

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

message: string

The error message during processing.