Massive/plan-page-params.ts

20 lines
278 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;
};
ViewGraph: {
name: string;
};
};