Type Alias ScheduleCalendar

An event specification relative to the calendar, similar to a traditional cron specification.

type ScheduleCalendar = {
    comment: string;
    dayOfMonth: ScheduleRange[];
    dayOfWeek: ScheduleRange[];
    hour: ScheduleRange[];
    minute: ScheduleRange[];
    month: ScheduleRange[];
    second: ScheduleRange[];
    year: ScheduleRange[];
}
Index

Properties

comment: string

Description of the intention of this schedule

dayOfMonth: ScheduleRange[]
dayOfWeek: ScheduleRange[]
minute: ScheduleRange[]
month: ScheduleRange[]
second: ScheduleRange[]