( checkpointsOrCheckpointsId?: MaybeCheckpointsOrCheckpointsId, )
| 1789 | ): Accessor<Checkpoints | undefined> => useThing(id, OFFSET_CHECKPOINTS); |
| 1790 | |
| 1791 | export const useCheckpointsOrCheckpointsById = ( |
| 1792 | checkpointsOrCheckpointsId?: MaybeCheckpointsOrCheckpointsId, |
| 1793 | ): Accessor<Checkpoints | undefined> => |
| 1794 | useThingOrThingById(checkpointsOrCheckpointsId, OFFSET_CHECKPOINTS); |
| 1795 | |
| 1796 | export const useProvideCheckpoints = ( |
| 1797 | checkpointsId: Id, |
no test coverage detected
searching dependent graphs…