This commit is contained in:
Peter Maquiran
2021-08-31 09:00:33 +01:00
parent 23d73c6d5f
commit 6b61630abc
11 changed files with 157 additions and 58 deletions
+37
View File
@@ -0,0 +1,37 @@
export interface EventList {
HasAttachments: boolean;
IsAllDayEvent: boolean;
EventId: string;
Subject: string;
Location: string;
CalendarId: string;
CalendarName: string;
StartDate: string;
EndDate: string;
HumanDate: string;
}
export interface EventListStore {
title: string
startTime: Date
endTime: Date
allDay: boolean,
event: EventList,
calendarName: string
profile: "md" | "pr",
id: string
}
export interface CustomCalendarEvent {
start: Date
end: Date
color: {
primary: string,
secondary: string
},
id: string
index: number,
CalendarName: string
event: EventListStore
}