Amazon Vinyl
    Preparing search index...

    Interface CodeRange

    Boundary code locations, used to determine if an error is within a certain range of code. The start and end boundaries must be the same path and file to be a valid range.

    interface CodeRange {
        end: CodeLocation | null;
        start: CodeLocation | null;
    }
    Index
    end: CodeLocation | null

    The ending code location (exclusive)

    start: CodeLocation | null

    The starting code location (inclusive)