export const ESportLevel = { VERY_SPORTY: "VERY_SPORTY", SPORTY: "SPORTY", BEGINNER: "BEGINNER", NOT_SPORTY: "NOT_SPORTY", NONE: "NONE", } as const; export type ESportLevel = keyof typeof ESportLevel; export const SportLevels: ESportLevel[] = Object.values(ESportLevel);