1 2 3 4 5 6 7
import { Team } from "@prisma/client"; export type TeamAliases = { [key in keyof typeof Team]: { name: string; }; };