(tableId: Id, rowId: Id, cellId: Id)
| 115 | everyCallback(willDelRowCallbacks, tableId, rowId); |
| 116 | |
| 117 | const willDelCell = (tableId: Id, rowId: Id, cellId: Id): boolean => |
| 118 | everyCallback(willDelCellCallbacks, tableId, rowId, cellId); |
| 119 | |
| 120 | const willDelValues = (): boolean => everyCallback(willDelValuesCallbacks); |
| 121 |
nothing calls this directly
no test coverage detected
searching dependent graphs…