Massive/home-page-params.ts
Brandon Presley 185ebd1824 Change way we detect set updates
Every time we create/update/delete fire a DeviceEventEmitter
event for gym sets. Then we subscribe to the changes in relevant
components.

Also fixed flickering of "No data yet" on graphs page.
2023-08-24 17:30:57 +12:00

14 lines
176 B
TypeScript

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