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

10 lines
154 B
TypeScript

export default interface Set {
id: number;
name: string;
reps: number;
weight: number;
created?: string;
unit?: string;
hidden?: boolean;
}