richer editing

This commit is contained in:
2025-08-15 00:13:38 -04:00
parent 5dfd38e5a5
commit 238d3cfbfe
3 changed files with 182 additions and 46 deletions

View File

@@ -1,7 +1,12 @@
export type CalendarEvent = {
id: string;
id: string; // UID
title: string;
start: string; // ISO date string (YYYY-MM-DD)
end?: string;
description?: string;
location?: string;
url?: string;
start: string; // ISO datetime
end?: string;
allDay?: boolean;
createdAt?: string;
lastModified?: string;
};