Type Alias ScheduleRange

ScheduleRange represents a set of integer values, used to match fields of a calendar time in scheduleCalendar. If end < start, then end is interpreted as equal to start

type ScheduleRange = {
    end?: number;
    start: number;
    step?: number;
}
Index

Properties

Properties

end?: number

End of the range (inclusive). If end < start, then end is interpreted as equal to start. Optional, defaulted to Start

start: number
step?: number