Massive/plan.ts

11 lines
138 B
TypeScript
Raw Normal View History

2022-07-06 05:40:53 +00:00
export interface Plan {
id: number;
days: string;
workouts: string;
}
export interface Workout {
name: string;
sets: number;
}