export default interface CalendarEvent {
    id: number | string;
    title: string;
    startedAt: Date;
    finishedAt: Date;
}
