working idb example
This commit is contained in:
7
src/lib/types.ts
Normal file
7
src/lib/types.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export type CalendarEvent = {
|
||||
id: string;
|
||||
title: string;
|
||||
start: string; // ISO date string (YYYY-MM-DD)
|
||||
end?: string;
|
||||
description?: string;
|
||||
};
|
||||
Reference in New Issue
Block a user