Interface VariableLocation

Row, column and file name where a variable was found.

interface VariableLocation {
    col: number;
    file?: string;
    row: number;
}

Properties

Properties

col: number
file?: string
row: number