wdpr
    Preparing search index...

    A contiguous range in the source text, defined by a start and end Point.

    The range is inclusive of start and exclusive of end — i.e., the character at end.offset is not part of the range.

    interface Position {
        end: Point;
        start: Point;
    }
    Index

    Properties

    Properties

    end: Point

    One past the last character of the range

    start: Point

    The first character of the range