to do calendar view

This commit is contained in:
2025-07-07 17:45:33 -04:00
parent de40c78f47
commit 5143be1a67
13 changed files with 225 additions and 26 deletions

14
types.d.ts vendored
View File

@@ -34,10 +34,10 @@ interface Todo {
name: string
complete: boolean
dueDate?: string | null
createdAt: string
updatedAt?: string
dueDate?: string | null
notes?: string | null
eventId: string
createdAt: string
updatedAt: string
}
interface EventData {
@@ -63,4 +63,12 @@ interface EventGuest {
lName: string
email?: string | null
}
}
type User = {
id: string
email: string
name?: string
username: string
role: 'COUPLE' | 'PLANNER' | 'GUEST'
}