@squidcloud/client
    Preparing search index...

    Interface SourceCodeLineRange

    Marks an inclusive range of lines in a repository path.

    interface SourceCodeLineRange {
        end: number;
        start: number;
    }
    Index
    end: number

    Stores the last included line number.

    start: number

    Stores the first included line number.