(checkpointsOrCheckpointsId)
| 1163 | var useCheckpointsOrCheckpointsById = (checkpointsOrCheckpointsId) => useThingOrThingById(checkpointsOrCheckpointsId, OFFSET_CHECKPOINTS); |
| 1164 | var useProvideCheckpoints = (checkpointsId, checkpoints) => useProvideThing(checkpointsId, checkpoints, OFFSET_CHECKPOINTS); |
| 1165 | var useCheckpointIds = (checkpointsOrCheckpointsId) => useListenable( |
| 1166 | CHECKPOINT + IDS, |
| 1167 | useCheckpointsOrCheckpointsById(checkpointsOrCheckpointsId), |
| 1168 | 2 |
| 1169 | ); |
| 1170 | var useCheckpoint = (checkpointId, checkpointsOrCheckpointsId) => useListenable( |
| 1171 | CHECKPOINT, |
| 1172 | useCheckpointsOrCheckpointsById(checkpointsOrCheckpointsId), |
no test coverage detected
searching dependent graphs…