( tableId: MaybeAccessor<Id>, rowId: MaybeAccessor<Id>, cellId: MaybeAccessor<Id>, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 657 | ]); |
| 658 | |
| 659 | export const useCell = ( |
| 660 | tableId: MaybeAccessor<Id>, |
| 661 | rowId: MaybeAccessor<Id>, |
| 662 | cellId: MaybeAccessor<Id>, |
| 663 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 664 | ): Accessor<CellOrUndefined> => |
| 665 | useListenable( |
| 666 | CELL, |
| 667 | useStoreOrStoreById(storeOrStoreId), |
| 668 | ReturnType.CellOrValue, |
| 669 | [tableId, rowId, cellId], |
| 670 | ); |
| 671 | |
| 672 | export const useCellState = ( |
| 673 | tableId: MaybeAccessor<Id>, |
searching dependent graphs…