-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
12 lines (11 loc) · 798 Bytes
/
Copy pathtypes.ts
File metadata and controls
12 lines (11 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
import { Database } from '@/database.types';
export type DBComment = Database["public"]["Tables"]["comment"]["Row"];
export type Profile = Database["public"]["Tables"]["profile"]["Row"];
export type Quest = Database["public"]["Tables"]["quest"]["Row"];
export type Subquest = Database["public"]["Tables"]["subquest"]["Row"];
export type CommentLike = Database["public"]["Tables"]["comment score"]["Row"];
export type LeaderboardMetaRow = Database["public"]["Tables"]["leaderboard meta"]["Row"];
export type City = Database["public"]["Tables"]["cities"]["Row"];
export type Completion = Database["public"]["Tables"]["completion"]["Row"];
export type Achievement = Database["public"]["Tables"]["achievement"]["Row"];
export type AchievementID = Database["public"]["Tables"]["achievement id"]["Row"];