This commit is contained in:
Janus Knudsen 2025-09-09 14:35:21 +02:00
parent 727a6ec53a
commit 72019a3d9a
15 changed files with 1056 additions and 1230 deletions

View file

@ -33,8 +33,8 @@ export interface RenderContext {
export interface CalendarEvent {
id: string;
title: string;
start: string; // ISO 8601
end: string; // ISO 8601
start: Date;
end: Date;
type: string; // Flexible event type - can be any string value
allDay: boolean;
syncStatus: SyncStatus;