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

Properties

Properties

col: number

The column number of the xml file, where the error is occurred.

file?: string

The filename

line: number

The line number of the xml file, where the error is occurred.

message: string

The message of the error during processing.