(checkpointId: Id)
| 99 | }; |
| 100 | |
| 101 | const clearCheckpointId = (checkpointId: Id): void => { |
| 102 | mapSet(deltas, checkpointId); |
| 103 | mapSet(labels, checkpointId); |
| 104 | callListeners(checkpointListeners, [checkpointId]); |
| 105 | }; |
| 106 | |
| 107 | const clearCheckpointIds = (checkpointIds: Ids, to?: number): void => |
| 108 | arrayForEach( |
no test coverage detected
searching dependent graphs…