Amazon Vinyl
    Preparing search index...

    Interface CodeLocation

    A location in code.

    interface CodeLocation {
        col: number | null;
        file: string | null;
        row: number;
        source: string | null;
    }
    Index
    col: number | null

    The column number. May not be present on all browsers (e.g. Firefox < 30).

    file: string | null

    The url to the file.

    row: number

    The row (line) number.

    source: string | null

    The source location - may provide the function name or in some browsers the source file if source maps are enabled.