( tableId: MaybeAccessor<Id>, rowId: MaybeAccessor<Id>, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 614 | ]); |
| 615 | |
| 616 | export const useRow = ( |
| 617 | tableId: MaybeAccessor<Id>, |
| 618 | rowId: MaybeAccessor<Id>, |
| 619 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 620 | ): Accessor<Row> => |
| 621 | useListenable(ROW, useStoreOrStoreById(storeOrStoreId), ReturnType.Object, [ |
| 622 | tableId, |
| 623 | rowId, |
| 624 | ]); |
| 625 | |
| 626 | export const useRowState = ( |
| 627 | tableId: MaybeAccessor<Id>, |
searching dependent graphs…