( store: Store | undefined, create: (store: Store) => Checkpoints, )
| 1778 | ); |
| 1779 | |
| 1780 | export const useCreateCheckpoints = ( |
| 1781 | store: Store | undefined, |
| 1782 | create: (store: Store) => Checkpoints, |
| 1783 | ): Accessor<Checkpoints | undefined> => useCreate(store, create); |
| 1784 | |
| 1785 | export const useCheckpointsIds = () => useThingIds(OFFSET_CHECKPOINTS); |
| 1786 |
no test coverage detected
searching dependent graphs…