( checkpointId: Id, checkpointsOrCheckpointsId?: CheckpointsOrCheckpointsId, )
| 2184 | ); |
| 2185 | |
| 2186 | export const useCheckpoint: typeof useCheckpointDecl = ( |
| 2187 | checkpointId: Id, |
| 2188 | checkpointsOrCheckpointsId?: CheckpointsOrCheckpointsId, |
| 2189 | ): string | undefined => |
| 2190 | useListenable( |
| 2191 | CHECKPOINT, |
| 2192 | useCheckpointsOrCheckpointsById(checkpointsOrCheckpointsId), |
| 2193 | ReturnType.CellOrValue, |
| 2194 | [checkpointId], |
| 2195 | ); |
| 2196 | |
| 2197 | export const useSetCheckpointCallback: typeof useSetCheckpointCallbackDecl = < |
| 2198 | Parameter, |
no test coverage detected
searching dependent graphs…