CalendarAccount
type CalendarAccount = {
[key: string]: unknown;
calendarsSyncState?: "error" | "synced" | "syncing";
id: string;
isAllDayTasksEnabled?: boolean;
isDeleted?: boolean;
isEventsEnabled?: boolean;
isTasksEnabled?: boolean;
name: string;
pendingOperationUntil?: string | null;
type: "google" | "microsoft" | "apple";
};
Type Declaration
Index Signature
[key: string]: unknown