Database Connection Update #4

Merged
humenius merged 49 commits from feature/database-connection into master 2021-02-08 03:16:51 +01:00
Showing only changes of commit 9ea9fa410c - Show all commits

View File

@@ -0,0 +1,6 @@
import { ranks, seasons, timetracker, user } from '@prisma/client';
import { TableEntry } from './TableEntry';
export type TimeTrackerStats = timetracker & { user: user; ranks: ranks; }
export type SeasonInfo = seasons & { maxSeasonId: number }
export type UserStatsResponse = SeasonInfo & TableEntry[]