Skip to content

Commit

Permalink
Merge pull request #22 from jphacks/feat/types
Browse files Browse the repository at this point in the history
Event型を追加
  • Loading branch information
Inlet-back authored Oct 26, 2024
2 parents bbac81e + 77590ef commit 2d75903
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions task_yell/src/lib/types.ts
Original file line number Diff line number Diff line change
@@ -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[];
}

0 comments on commit 2d75903

Please sign in to comment.