Massive/home-page-params.ts

24 lines
322 B
TypeScript
Raw Normal View History

import GymSet from "./gym-set";
export type HomePageParams = {
Sets: {
search?: string;
2023-08-28 06:08:30 +00:00
/**
* Update the specified set
2023-08-28 06:08:30 +00:00
*/
refresh?: GymSet;
2023-08-28 06:08:30 +00:00
/**
* Reload the list with limit = 0
*/
reset?: number;
};
EditSet: {
set: GymSet;
};
EditSets: {
ids: number[];
};
};