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

    Interface ITimeInterval

    Describes a time interval.

    interface ITimeInterval {
        endMs?: number;
        startMs: number;
    }

    Properties

    endMs?: number

    The end of the time interval, in milliseconds. The end is EXCLUSIVE, ie. not included in the range. If endMs of an interval is undefined, the interval is open and never ends.

    startMs: number

    The start of the time interval, in milliseconds.