Massive/session-page-params.ts
2022-10-05 23:38:52 +13:00

11 lines
164 B
TypeScript

import {Plan} from './plan';
import Set from './set';
export type SessionPageParams = {
SessionList: {};
StartSession: {
plan: Plan;
set: Set;
};
};