Massive/plan-page-params.ts

16 lines
208 B
TypeScript
Raw Normal View History

import GymSet from './gym-set'
2022-10-31 04:22:08 +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
}
EditSet: {
set: GymSet
}
2022-10-31 04:22:08 +00:00
}