//#region src/core/interfaces/vertices/properties/maximum-schedule-span.d.ts /** * The maximum number of minutes a schedule is allowed to span over a day and week */ type MaximumScheduleSpan = { /** * The maximum number of minutes a schedule is allowed to span over a day. * The daily schedule span is the duration between the start of the first event and the end of the last event that day. */ daily?: number | null; /** * The maximum number of minutes a schedule is allowed to span over a week. * The weekly schedule span is the sum of the daily schedule spans for each day of the week. */ weekly?: number | null; }; //#endregion export { MaximumScheduleSpan }; //# sourceMappingURL=maximum-schedule-span.d.ts.map