added raw recurrence support
This commit is contained in:
@@ -1,12 +1,14 @@
|
||||
export type CalendarEvent = {
|
||||
id: string; // UID
|
||||
id: string;
|
||||
title: string;
|
||||
description?: string;
|
||||
location?: string;
|
||||
url?: string;
|
||||
start: string; // ISO datetime
|
||||
start: string;
|
||||
end?: string;
|
||||
allDay?: boolean;
|
||||
createdAt?: string;
|
||||
lastModified?: string;
|
||||
|
||||
recurrenceRule?: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user