( checkpointsOrCheckpointsId?: MaybeGetter<Checkpoints | Id | undefined>, )
| 921 | ); |
| 922 | |
| 923 | export const createGoBackwardCallback = ( |
| 924 | checkpointsOrCheckpointsId?: MaybeGetter<Checkpoints | Id | undefined>, |
| 925 | ): (() => void) => { |
| 926 | const getCheckpoints = resolveCheckpoints(checkpointsOrCheckpointsId); |
| 927 | return () => getCheckpoints()?.goBackward(); |
| 928 | }; |
| 929 | |
| 930 | export const createGoForwardCallback = ( |
| 931 | checkpointsOrCheckpointsId?: MaybeGetter<Checkpoints | Id | undefined>, |
no test coverage detected
searching dependent graphs…