UNPKG

worker-calendar

Version:

A customizable, responsive Angular calendar component for scheduling worker appointments or shifts

10 lines 253 B
export interface CalendarEvent { id: number; title: string; startTime: Date; endTime: Date; date: Date; workerIds: number[]; // Array of worker IDs assigned to this event description?: string; color?: string; }