added raw recurrence support

This commit is contained in:
2025-08-15 22:31:11 -04:00
parent a41d003401
commit 2d5db29f27
3 changed files with 44 additions and 29 deletions

View File

@@ -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;
};