( tableId: MaybeAccessor<Id>, rowId: MaybeAccessor<Id>, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 604 | ); |
| 605 | |
| 606 | export const useHasRow = ( |
| 607 | tableId: MaybeAccessor<Id>, |
| 608 | rowId: MaybeAccessor<Id>, |
| 609 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 610 | ): Accessor<boolean> => |
| 611 | useListenable(ROW, useStoreOrStoreById(storeOrStoreId), ReturnType.Boolean, [ |
| 612 | tableId, |
| 613 | rowId, |
| 614 | ]); |
| 615 | |
| 616 | export const useRow = ( |
| 617 | tableId: MaybeAccessor<Id>, |
searching dependent graphs…