angular-calendar-scheduler
Version:
This project provide a scheduler view component for [mattlewis92/angular-calendar](https://github.com/mattlewis92/angular-calendar).
15 lines (14 loc) • 431 B
TypeScript
import { SchedulerViewEvent } from './scheduler-view-event.model';
import { SchedulerViewHour } from './scheduler-view-hour-model';
export interface SchedulerViewDay {
date: Date;
events: SchedulerViewEvent[];
isPast: boolean;
isToday: boolean;
isFuture: boolean;
isWeekend: boolean;
inMonth: boolean;
backgroundColor?: string;
cssClass?: string;
hours: SchedulerViewHour[];
}