diff --git a/task_yell/src/lib/types.ts b/task_yell/src/lib/types.ts new file mode 100644 index 0000000..ef642c9 --- /dev/null +++ b/task_yell/src/lib/types.ts @@ -0,0 +1,10 @@ +export interface Event { + title: string; + description: string; + attendees: string[]; + start: Date; + end: Date; + importance: "high" | "medium" | "low"; + location: FirebaseFirestore.GeoPoint; + reccurence: string[]; +}