()
| 3141 | const willDelRow = (tableId, rowId) => everyCallback(willDelRowCallbacks, tableId, rowId); |
| 3142 | const willDelCell = (tableId, rowId, cellId) => everyCallback(willDelCellCallbacks, tableId, rowId, cellId); |
| 3143 | const willDelValues = () => everyCallback(willDelValuesCallbacks); |
| 3144 | const willDelValue = (valueId) => everyCallback(willDelValueCallbacks, valueId); |
| 3145 | const willApplyChanges = (changes) => reduceCallbacks(willApplyChangesCallbacks, changes); |
| 3146 | const getStore = () => store; |
nothing calls this directly
no test coverage detected
searching dependent graphs…