styling friday
This commit is contained in:
23
types.d.ts
vendored
Normal file
23
types.d.ts
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
/* eslint-disable @typescript-eslint/no-explicit-any */
|
||||
interface GuestBookEntry {
|
||||
id: string
|
||||
fName: string
|
||||
lName: string
|
||||
side: string
|
||||
email?: string | null
|
||||
phone?: string | null
|
||||
address?: string | null
|
||||
notes?: string | null
|
||||
createdAt: Date
|
||||
}
|
||||
|
||||
interface EventProps {
|
||||
id: string
|
||||
name: string
|
||||
date?: Date | null
|
||||
location?: string | null
|
||||
creator: { id: string; username: string; }
|
||||
createdAt: Date; date: Date | null;
|
||||
creatorId: string;
|
||||
key: string;
|
||||
}
|
||||
Reference in New Issue
Block a user