import { Workout } from "./workout.model"; export interface Plan { name: string, description: string, startDate: Date, endDate: Date, numWeeks: number, workouts: Workout[][] }