Massive/plan.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

6 lines
76 B
TypeScript

export interface Plan {
id: number;
days: string;
workouts: string;
}