Interface TimedObjectsInRange<T>

時区間駆動型APIの問い合わせ結果 / Query results for time-range-driven API

interface TimedObjectsInRange<T> {
    current: T;
    entered: T[];
    left: T[];
    next: T;
    previous: T;
}

Type Parameters

Properties

current: T

指定区間の終了時にかぶっているオブジェクト / Timed object overlapping with the end time of the specified time range

entered: T[]

指定区間内で開始したオブジェクト / Timed objects that started within the specified time range

left: T[]

指定区間内で終了したオブジェクト / Timed objects that ended within the specified time range

next: T

指定区間の直前にあるオブジェクト / The first timed object after the specified time range

previous: T

指定区間の直前にあるオブジェクト / The last timed object before the specified time range