( tableId: MaybeAccessor<Id>, rowId: MaybeAccessor<Id>, cellId: MaybeAccessor<Id>, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 670 | ); |
| 671 | |
| 672 | export const useCellState = ( |
| 673 | tableId: MaybeAccessor<Id>, |
| 674 | rowId: MaybeAccessor<Id>, |
| 675 | cellId: MaybeAccessor<Id>, |
| 676 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 677 | ): [Accessor<CellOrUndefined>, (cell: Cell) => void] => [ |
| 678 | useCell(tableId, rowId, cellId, storeOrStoreId), |
| 679 | useSetCellCallback(tableId, rowId, cellId, getArg, storeOrStoreId), |
| 680 | ]; |
| 681 | |
| 682 | export const useHasValues = ( |
| 683 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
searching dependent graphs…