( checkpointId: MaybeGetter<Id>, checkpointsOrCheckpointsId?: MaybeGetter<Checkpoints | Id | undefined>, )
| 910 | ); |
| 911 | |
| 912 | export const getCheckpoint = ( |
| 913 | checkpointId: MaybeGetter<Id>, |
| 914 | checkpointsOrCheckpointsId?: MaybeGetter<Checkpoints | Id | undefined>, |
| 915 | ): {readonly current: string | undefined} => |
| 916 | createListenable( |
| 917 | resolveCheckpoints(checkpointsOrCheckpointsId), |
| 918 | CHECKPOINT, |
| 919 | undefined, |
| 920 | () => [maybeGet(checkpointId)], |
| 921 | ); |
| 922 | |
| 923 | export const createGoBackwardCallback = ( |
| 924 | checkpointsOrCheckpointsId?: MaybeGetter<Checkpoints | Id | undefined>, |
no test coverage detected
searching dependent graphs…