Massive/home-page-params.ts

12 lines
145 B
TypeScript
Raw Normal View History

2022-10-31 04:22:08 +00:00
import GymSet from './gym-set'
export type HomePageParams = {
2022-10-31 04:22:08 +00:00
Sets: {}
EditSet: {
2022-10-31 04:22:08 +00:00
set: GymSet
}
EditSets: {
ids: number[]
}
2022-10-31 04:22:08 +00:00
}