(tableId: Id, table: Table)
| 87 | reduceCallbacks(willSetTablesCallbacks, tables); |
| 88 | |
| 89 | const willSetTable = (tableId: Id, table: Table): Table | undefined => |
| 90 | reduceCallbacks(willSetTableCallbacks, table, tableId); |
| 91 | |
| 92 | const willSetRow = (tableId: Id, rowId: Id, row: Row): Row | undefined => |
| 93 | reduceCallbacks(willSetRowCallbacks, row, tableId, rowId); |
no test coverage detected
searching dependent graphs…