mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
save
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user