( checkpointId: MaybeGetter<IdOrNull>, listener: CheckpointListener, checkpointsOrCheckpointsId?: MaybeGetter<Checkpoints | Id | undefined>, )
| 1532 | ); |
| 1533 | |
| 1534 | export const onCheckpoint = ( |
| 1535 | checkpointId: MaybeGetter<IdOrNull>, |
| 1536 | listener: CheckpointListener, |
| 1537 | checkpointsOrCheckpointsId?: MaybeGetter<Checkpoints | Id | undefined>, |
| 1538 | ): void => |
| 1539 | addListenerEffect( |
| 1540 | resolveCheckpoints(checkpointsOrCheckpointsId), |
| 1541 | CHECKPOINT, |
| 1542 | listener, |
| 1543 | () => [maybeGet(checkpointId)], |
| 1544 | ); |
| 1545 | |
| 1546 | export const onPersisterStatus = ( |
| 1547 | listener: StatusListener, |
no test coverage detected
searching dependent graphs…