(
tableId: Id,
rowId: Id,
cellId: Id,
cell: Cell,
)
| 93 | reduceCallbacks(willSetRowCallbacks, row, tableId, rowId); |
| 94 | |
| 95 | const willSetCell = ( |
| 96 | tableId: Id, |
| 97 | rowId: Id, |
| 98 | cellId: Id, |
| 99 | cell: Cell, |
| 100 | ): CellOrUndefined => |
| 101 | reduceCallbacks(willSetCellCallbacks, cell, tableId, rowId, cellId); |
| 102 | |
| 103 | const willSetValues = (values: Values): Values | undefined => |
| 104 | reduceCallbacks(willSetValuesCallbacks, values); |
no test coverage detected
searching dependent graphs…