import type { TimeOfDay } from './TimeOfDay'; /** * @type Recurrence: Document representing a schedule recurrence. * * @property dayOfWeek: The days of week for recurrence. * * @property timeOfDay: The time of the day for recurrence. * */ export type Recurrence = { dayOfWeek: Array; timeOfDay: TimeOfDay; } & { [key: string]: any; }; export type RecurrenceDayOfWeekEnum = 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday' | 'sunday';