From be0f537dc4fe384eef09436833c6407e6482c16d Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Thu, 9 Nov 2023 15:40:16 +0700 Subject: Initial commit --- src/common/types/team.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/common/types/team.ts (limited to 'src/common/types/team.ts') diff --git a/src/common/types/team.ts b/src/common/types/team.ts new file mode 100644 index 0000000..0989337 --- /dev/null +++ b/src/common/types/team.ts @@ -0,0 +1,7 @@ +import { Team } from "@prisma/client"; + +export type TeamAliases = { + [key in keyof typeof Team]: { + name: string; + }; +}; -- cgit v1.2.3