(tableId: Id, rowId: Id)
| 112 | everyCallback(willDelTableCallbacks, tableId); |
| 113 | |
| 114 | const willDelRow = (tableId: Id, rowId: Id): boolean => |
| 115 | everyCallback(willDelRowCallbacks, tableId, rowId); |
| 116 | |
| 117 | const willDelCell = (tableId: Id, rowId: Id, cellId: Id): boolean => |
| 118 | everyCallback(willDelCellCallbacks, tableId, rowId, cellId); |
nothing calls this directly
no test coverage detected
searching dependent graphs…