Package version:

Interface RecurrenceSchedule

The recurrence schedule.

interface RecurrenceSchedule {
    hours?: number[];
    minutes?: number[];
    monthDays?: number[];
    monthlyOccurrences?: RecurrenceScheduleOccurrence[];
    weekDays?: DaysOfWeek[];
    [property: string]: any;
}

Indexable

  • [property: string]: any

    Describes unknown properties. The value of an unknown property can be of "any" type.

Properties

hours?: number[]

The hours.

minutes?: number[]

The minutes.

monthDays?: number[]

The month days.

monthlyOccurrences?: RecurrenceScheduleOccurrence[]

The monthly occurrences.

weekDays?: DaysOfWeek[]

The days of the week.