11 lines
279 B
TypeScript
11 lines
279 B
TypeScript
|
export const CALDAV_CALENDAR_TYPE = "caldav";
|
||
|
|
||
|
export const APPLE_CALENDAR_URL = "https://caldav.icloud.com";
|
||
|
|
||
|
export const CALENDAR_INTEGRATIONS_TYPES = {
|
||
|
apple: "apple_calendar",
|
||
|
caldav: "caldav_calendar",
|
||
|
google: "google_calendar",
|
||
|
office365: "office365_calendar",
|
||
|
};
|