(label?: string)
| 174 | }; |
| 175 | |
| 176 | const addCheckpoint = (label?: string) => { |
| 177 | const id = addCheckpointImpl(label); |
| 178 | callListenersIfChanged(); |
| 179 | return id; |
| 180 | }; |
| 181 | |
| 182 | const setCheckpoint = (checkpointId: Id, label: string) => { |
| 183 | if ( |
no test coverage detected
searching dependent graphs…