summaryrefslogtreecommitdiff
path: root/src/common/types/team.ts
blob: 0989337cfda862b69a101dbff4f47c1d9e497432 (plain)
1
2
3
4
5
6
7
import { Team } from "@prisma/client";

export type TeamAliases = {
  [key in keyof typeof Team]: {
    name: string;
  };
};