( checkpointsOrCheckpointsId?: MaybeGetter<Checkpoints | Id | undefined>, )
| 901 | }; |
| 902 | |
| 903 | export const getCheckpointIds = ( |
| 904 | checkpointsOrCheckpointsId?: MaybeGetter<Checkpoints | Id | undefined>, |
| 905 | ): {readonly current: CheckpointIds} => |
| 906 | createListenable( |
| 907 | resolveCheckpoints(checkpointsOrCheckpointsId), |
| 908 | CHECKPOINT + IDS, |
| 909 | DEFAULT_CHECKPOINT_IDS, |
| 910 | ); |
| 911 | |
| 912 | export const getCheckpoint = ( |
| 913 | checkpointId: MaybeGetter<Id>, |
nothing calls this directly
no test coverage detected
searching dependent graphs…