| 14 | } |
| 15 | |
| 16 | interface DayColumn { |
| 17 | date: Date; |
| 18 | label: string; |
| 19 | subLabel: string; |
| 20 | isToday: boolean; |
| 21 | events: ScheduledEvent[]; |
| 22 | intervalJobs: { job: CronJob; color: string; intervalLabel: string }[]; |
| 23 | } |
| 24 | |
| 25 | // Pastel-ish colors that look great on dark backgrounds |
| 26 | const JOB_COLORS = [ |
nothing calls this directly
no outgoing calls
no test coverage detected