Interface TokenLocation

Token location object.

interface TokenLocation {
    end: Position;
    rowNumber: number;
    start: Position;
}

Properties

Properties

End location.

rowNumber: number

Row number. Starts from 1.

Remarks

This represents the logical row number in the CSV, counting from 1 for the first row, whether it is a header or not.

start: Position

Start location.