( checkpointsOrCheckpointsId?: CheckpointsOrCheckpointsId, )
| 2175 | ): void => useProvideThing(checkpointsId, checkpoints, OFFSET_CHECKPOINTS); |
| 2176 | |
| 2177 | export const useCheckpointIds: typeof useCheckpointIdsDecl = ( |
| 2178 | checkpointsOrCheckpointsId?: CheckpointsOrCheckpointsId, |
| 2179 | ): CheckpointIds => |
| 2180 | useListenable( |
| 2181 | CHECKPOINT + IDS, |
| 2182 | useCheckpointsOrCheckpointsById(checkpointsOrCheckpointsId), |
| 2183 | ReturnType.Checkpoints, |
| 2184 | ); |
| 2185 | |
| 2186 | export const useCheckpoint: typeof useCheckpointDecl = ( |
| 2187 | checkpointId: Id, |
searching dependent graphs…