(tableId, rowId, cellId, getCell, storeOrStoreId, then)
| 567 | rowId |
| 568 | ); |
| 569 | var useSetCellCallback = (tableId, rowId, cellId, getCell, storeOrStoreId, then) => useStoreSetCallback( |
| 570 | storeOrStoreId, |
| 571 | CELL, |
| 572 | getCell, |
| 573 | then, |
| 574 | tableId, |
| 575 | rowId, |
| 576 | cellId |
| 577 | ); |
| 578 | var useSetValuesCallback = (getValues, storeOrStoreId, then) => useStoreSetCallback(storeOrStoreId, VALUES, getValues, then); |
| 579 | var useSetPartialValuesCallback = (getPartialValues, storeOrStoreId, then) => useStoreSetCallback(storeOrStoreId, PARTIAL + VALUES, getPartialValues, then); |
| 580 | var useSetValueCallback = (valueId, getValue2, storeOrStoreId, then) => useStoreSetCallback(storeOrStoreId, VALUE, getValue2, then, valueId); |
no test coverage detected
searching dependent graphs…