Massive/plan-page-params.ts

17 lines
229 B
TypeScript

import GymSet from './gym-set'
import { Plan } from './plan'
export type PlanPageParams = {
PlanList: {}
EditPlan: {
plan: Plan
}
StartPlan: {
plan: Plan
first?: GymSet
}
EditSet: {
set: GymSet
}
}