UNPKG

@activecollab/components

Version:

ActiveCollab Components

16 lines 412 B
export type DaysToModifyTypes = "user_day_off" | "global_day_off" | "selectable_global_day_off"; export interface DaysToModify { from: number; to: number; title: string; repeating: boolean; type?: DaysToModifyTypes; } export interface DaysToModifyV1 { from: Date; to: Date; title: string; repeating: boolean; type?: DaysToModifyTypes; } //# sourceMappingURL=types.d.ts.map