( checkpointsOrCheckpointsId?: MaybeCheckpointsOrCheckpointsId, )
| 1799 | ): void => useProvideThing(checkpointsId, checkpoints, OFFSET_CHECKPOINTS); |
| 1800 | |
| 1801 | export const useCheckpointIds = ( |
| 1802 | checkpointsOrCheckpointsId?: MaybeCheckpointsOrCheckpointsId, |
| 1803 | ): Accessor<CheckpointIds> => |
| 1804 | useListenable( |
| 1805 | CHECKPOINT + IDS, |
| 1806 | useCheckpointsOrCheckpointsById(checkpointsOrCheckpointsId), |
| 1807 | ReturnType.Checkpoints, |
| 1808 | ); |
| 1809 | |
| 1810 | export const useCheckpoint = ( |
| 1811 | checkpointId: MaybeAccessor<Id>, |
searching dependent graphs…