interface FilePosition {
    column: number;
    endColumn?: number;
    endLine?: number;
    file?: string;
    line: number;
    source?: string;
    url: string;
}

Properties

column: number

Column of inclusive start position in source file.

endColumn?: number

Column of exclusive end position in source file.

endLine?: number

Line of exclusive end position in source file.

file?: string

Absolute path to the source file.

line: number

Line of inclusive start position in source file.

source?: string

Source code.

url: string

URL for the source file.