You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
export const EGoal = {
|
|
WEIGHT_LOSS: "WEIGHT_LOSS",
|
|
MASS_GAIN: "MASS_GAIN",
|
|
FITNESS: "FITNESS",
|
|
IMPROVE_STAMINA: "IMPROVE_STAMINA",
|
|
KEEP_FIT: "KEEP_FIT",
|
|
NONE: "NONE",
|
|
} as const;
|
|
|
|
export type EGoal = keyof typeof EGoal;
|
|
|
|
export const Goals: EGoal[] = Object.values(EGoal);
|