–ƒ–Hozifaelgharbawy
update
8b3449a
raw
history blame
900 Bytes
export enum Role {
USER = "user"
}
export enum Gender {
MALE = "male",
FEMALE = "female"
}
export enum FitnessLevel {
BEGINNER = "beginner",
INTERMEDIATE = "intermediate",
ADVANCED = "advanced"
}
export enum FitnessGoal {
LOSE_WEIGHT = "lose weight",
GAIN_MUSCLE = "gain muscle",
GET_FITTER = "get fitter"
}
export enum WorkoutPlace {
GYM = "gym",
HOME = "home",
BOTH = "both"
}
export enum PreferredDay {
SATURDAY = "saturday",
SUNDAY = "sunday",
MONDAY = "monday",
TUESDAY = "tuesday",
WEDNESDAY = "wednesday",
THURSDAY = "thursday",
FRIDAY = "friday"
}
export enum PreferredEquipment {
BARBELLS = "barbells",
DUMBBELLS = "dumbbells",
GYM_MACHINES = "gym machines",
RESISTANCE_BAND = "resistance band",
BODYWEIGHT = "bodyweight"
}
export enum Injurie {
NECK = "neck",
SHOULDERS = "shoulders",
BACK = "back",
ARMS = "arms",
KNEES = "knees"
}