Massive/plan-page-params.ts

14 lines
200 B
TypeScript

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