Massive/session-page-params.ts

11 lines
164 B
TypeScript
Raw Normal View History

2022-10-05 10:38:52 +00:00
import {Plan} from './plan';
import Set from './set';
export type SessionPageParams = {
SessionList: {};
StartSession: {
plan: Plan;
set: Set;
};
};