( tableId: MaybeAccessor<Id>, rowId: MaybeAccessor<Id>, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 633 | ]; |
| 634 | |
| 635 | export const useCellIds = ( |
| 636 | tableId: MaybeAccessor<Id>, |
| 637 | rowId: MaybeAccessor<Id>, |
| 638 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 639 | ): Accessor<Ids> => |
| 640 | useListenable( |
| 641 | CELL_IDS, |
| 642 | useStoreOrStoreById(storeOrStoreId), |
| 643 | ReturnType.Array, |
| 644 | [tableId, rowId], |
| 645 | ); |
| 646 | |
| 647 | export const useHasCell = ( |
| 648 | tableId: MaybeAccessor<Id>, |
searching dependent graphs…