Massive/session-page-params.ts

11 lines
164 B
TypeScript

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