( tableId: MaybeAccessor<Id>, rowId: MaybeAccessor<Id>, cellId: MaybeAccessor<Id>, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 645 | ); |
| 646 | |
| 647 | export const useHasCell = ( |
| 648 | tableId: MaybeAccessor<Id>, |
| 649 | rowId: MaybeAccessor<Id>, |
| 650 | cellId: MaybeAccessor<Id>, |
| 651 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 652 | ): Accessor<boolean> => |
| 653 | useListenable(CELL, useStoreOrStoreById(storeOrStoreId), ReturnType.Boolean, [ |
| 654 | tableId, |
| 655 | rowId, |
| 656 | cellId, |
| 657 | ]); |
| 658 | |
| 659 | export const useCell = ( |
| 660 | tableId: MaybeAccessor<Id>, |
searching dependent graphs…