2021-08-31 16:32:16 +01:00
|
|
|
|
|
|
|
|
export interface EventListStore {
|
|
|
|
|
startTime: Date
|
|
|
|
|
endTime: Date
|
|
|
|
|
allDay: boolean,
|
|
|
|
|
event: EventList,
|
2021-09-02 16:06:53 +01:00
|
|
|
calendarName: "Oficial" |"Pessoal"
|
2021-08-31 16:32:16 +01:00
|
|
|
profile: "md" | "pr",
|
|
|
|
|
id: string
|
2022-04-02 14:13:37 +01:00
|
|
|
CalendarId: any
|
2021-08-31 16:32:16 +01:00
|
|
|
}
|
|
|
|
|
|
2021-08-31 09:00:33 +01:00
|
|
|
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 CustomCalendarEvent {
|
|
|
|
|
start: Date
|
|
|
|
|
end: Date
|
|
|
|
|
id: string
|
2021-08-31 16:32:16 +01:00
|
|
|
event: EventList
|
2021-09-02 16:06:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export interface days {
|
|
|
|
|
[days: string]: {
|
|
|
|
|
day: number
|
|
|
|
|
activeEvent: number
|
|
|
|
|
events: CustomCalendarEvent[]
|
|
|
|
|
}
|
2021-08-31 09:00:33 +01:00
|
|
|
}
|