( checkpointId: MaybeAccessor<Id>, checkpointsOrCheckpointsId?: MaybeCheckpointsOrCheckpointsId, )
| 1808 | ); |
| 1809 | |
| 1810 | export const useCheckpoint = ( |
| 1811 | checkpointId: MaybeAccessor<Id>, |
| 1812 | checkpointsOrCheckpointsId?: MaybeCheckpointsOrCheckpointsId, |
| 1813 | ): Accessor<string | undefined> => |
| 1814 | useListenable( |
| 1815 | CHECKPOINT, |
| 1816 | useCheckpointsOrCheckpointsById(checkpointsOrCheckpointsId), |
| 1817 | ReturnType.CellOrValue, |
| 1818 | [checkpointId], |
| 1819 | ); |
| 1820 | |
| 1821 | export const useSetCheckpointCallback = <Parameter>( |
| 1822 | getCheckpoint: (parameter: Parameter) => string | undefined = getUndefined, |
no test coverage detected
searching dependent graphs…