Massive/drawer-param-list.ts

20 lines
294 B
TypeScript

import GymSet from "./gym-set";
export type DrawerParams = {
Home: {
search?: string;
};
Settings: {};
Graphs: {};
Plans: {};
Workouts: {
clearNames?: boolean;
search?: string;
update?: GymSet;
reset?: number;
};
Timer: {};
Weight: {};
Insights: {};
};