Colibrio Reader Framework API - Cloud license
    Preparing search index...

    Interface IIntegerRange

    A numeric range between two integers.

    interface IIntegerRange {
        end: number;
        start: number;
    }

    Properties

    end: number

    The end of the range as an integer value. The range is up-to but not including the end value. Thus, the size of a range between 0 and 100 is 100.

    1

    start: number

    The start of the range as an integer value.

    0