(tableId, rowId, getRow, getRowDeps, storeOrStoreId, then, thenDeps)
| 597 | tableId |
| 598 | ); |
| 599 | var useSetRowCallback = (tableId, rowId, getRow, getRowDeps, storeOrStoreId, then, thenDeps) => useStoreSetCallback( |
| 600 | storeOrStoreId, |
| 601 | ROW, |
| 602 | getRow, |
| 603 | getRowDeps, |
| 604 | then, |
| 605 | thenDeps, |
| 606 | tableId, |
| 607 | rowId |
| 608 | ); |
| 609 | var useAddRowCallback = (tableId, getRow, getRowDeps = EMPTY_ARRAY, storeOrStoreId, then = getUndefined, thenDeps = EMPTY_ARRAY, reuseRowIds = true) => { |
| 610 | const store = useStoreOrStoreById(storeOrStoreId); |
| 611 | return useCallback( |
no test coverage detected
searching dependent graphs…