Skip to content
This repository has been archived by the owner on Nov 24, 2024. It is now read-only.

Commit

Permalink
add API types
Browse files Browse the repository at this point in the history
  • Loading branch information
deminearchiver committed Nov 24, 2024
1 parent b4e1899 commit cfe9f3d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions apps/frontend/src/utils/api.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
type IntroSession = {
type: "intro";
}

type EventSession = {
type: "event";
}

type EndingSession = {
type: "ending";
}

type Session = IntroSession | EventSession | EndingSession;

0 comments on commit cfe9f3d

Please sign in to comment.