( tableId: Id, rowId: Id, cellId: Id, storeOrStoreId?: StoreOrStoreId, )
| 841 | ); |
| 842 | |
| 843 | export const useCellState: typeof useCellStateDecl = ( |
| 844 | tableId: Id, |
| 845 | rowId: Id, |
| 846 | cellId: Id, |
| 847 | storeOrStoreId?: StoreOrStoreId, |
| 848 | ): [CellOrUndefined, (cell: Cell) => void] => [ |
| 849 | useCell(tableId, rowId, cellId, storeOrStoreId), |
| 850 | useSetCellCallback(tableId, rowId, cellId, getArg, [], storeOrStoreId), |
| 851 | ]; |
| 852 | |
| 853 | export const useHasValues: typeof useHasValuesDecl = ( |
| 854 | storeOrStoreId?: StoreOrStoreId, |
searching dependent graphs…