Massive/plan-page-params.ts
Brandon Presley e0b84af9e7 Move sessions page functionality onto Plan page
The sessions page mostly copied the exact same features as Plans,
which would confuse the user.
2022-10-12 14:07:48 +13:00

14 lines
190 B
TypeScript

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