Massive/plan-page-params.ts

17 lines
229 B
TypeScript
Raw Normal View History

import GymSet from './gym-set'
2023-06-27 03:16:59 +00:00
import { Plan } from './plan'
export type PlanPageParams = {
2022-10-31 04:22:08 +00:00
PlanList: {}
EditPlan: {
2022-10-31 04:22:08 +00:00
plan: Plan
}
StartPlan: {
2022-10-31 04:22:08 +00:00
plan: Plan
first?: GymSet
2022-10-31 04:22:08 +00:00
}
EditSet: {
set: GymSet
}
2022-10-31 04:22:08 +00:00
}