( store: Store | undefined, create: (store: Store) => Checkpoints, createDeps?: DependencyList, )
| 2151 | ); |
| 2152 | |
| 2153 | export const useCreateCheckpoints: typeof useCreateCheckpointsDecl = ( |
| 2154 | store: Store | undefined, |
| 2155 | create: (store: Store) => Checkpoints, |
| 2156 | createDeps?: DependencyList, |
| 2157 | ): Checkpoints | undefined => useCreate(store, create, createDeps); |
| 2158 | |
| 2159 | export const useCheckpointsIds: typeof useCheckpointsIdsDecl = () => |
| 2160 | useThingIds(OFFSET_CHECKPOINTS); |