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

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