(checkpointId: Id)
| 204 | const hasCheckpoint = (checkpointId: Id) => collHas(deltas, checkpointId); |
| 205 | |
| 206 | const getCheckpoint = (checkpointId: Id): string | undefined => |
| 207 | mapGet(labels, checkpointId); |
| 208 | |
| 209 | const goBackward = (): Checkpoints => { |
| 210 | goBackwardImpl(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…