13 lines
219 B
TypeScript
13 lines
219 B
TypeScript
export interface RegistryItem {
|
|
id: string;
|
|
name: string;
|
|
taken: boolean;
|
|
link?: string;
|
|
claimedBy?: string;
|
|
}
|
|
|
|
export interface RSVPItem {
|
|
name: string;
|
|
dietaryRestrictions: string;
|
|
timestamp: string;
|
|
} |