@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Defines a contiguous range of row indices.

    Used to request a slice of data from a datasource (e.g. for virtual scrolling or pagination).

    interface RangeDefinition {
        length: number;
        start: number;
    }
    Index

    Properties

    Properties

    length: number

    Number of rows in the range.

    start: number

    Zero-based index of the first row in the range.