linXiv frontend (TS/JS)
    Preparing search index...

    Interface HighlightRange

    A highlight span with a current-match flag; offsets are page-relative in rangesForItem's input and item-relative in its output.

    interface HighlightRange {
        current: boolean;
        end: number;
        start: number;
    }
    Index
    current: boolean
    end: number
    start: number