Massive/workout.ts
Brandon Presley 23d8c91c69 Add workouts page
The workouts page can be used to add a new type of workout,
or to edit the name of an already existing one.
Closes #1.
2022-08-26 15:10:28 +12:00

5 lines
69 B
TypeScript

export default interface Workout {
name: string;
sets: number;
}