(tableId: Id)
| 109 | const willDelTables = (): boolean => everyCallback(willDelTablesCallbacks); |
| 110 | |
| 111 | const willDelTable = (tableId: Id): boolean => |
| 112 | everyCallback(willDelTableCallbacks, tableId); |
| 113 | |
| 114 | const willDelRow = (tableId: Id, rowId: Id): boolean => |
| 115 | everyCallback(willDelRowCallbacks, tableId, rowId); |
nothing calls this directly
no test coverage detected
searching dependent graphs…