/** * @type TimeOfDay: Document representing a time schedule within a single day. * * @property timeFrom: The time to start from. Time format: HH:mm:ss. Seconds are ignored and set to 0. * * @property timeTo: The time to end on. Time format: HH:mm:ss. Seconds are ignored and set to 0. * */ export type TimeOfDay = { timeFrom: string; timeTo: string; } & { [key: string]: any; };