Massive/home-page-params.ts

14 lines
176 B
TypeScript

import GymSet from "./gym-set";
export type HomePageParams = {
Sets: {
search?: string;
};
EditSet: {
set: GymSet;
};
EditSets: {
ids: number[];
};
};