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

Start of the range (inclusive)

step?: number

Step to be take between each value. Optional, defaulted to 1