Massive/home-page-params.ts
Brandon Presley 71d223f0a1 Add current workout progress to title of set editing
Related to #48

Should be thoroughly tested before closing.
2022-09-24 19:09:58 +12:00

11 lines
147 B
TypeScript

import Set from './set';
export type HomePageParams = {
Sets: {};
EditSet: {
set: Set;
workouts: string[];
count: number;
};
};