( tableId: Id, rowId: Id, storeOrStoreId?: StoreOrStoreId, )
| 785 | ]); |
| 786 | |
| 787 | export const useRow: typeof useRowDecl = ( |
| 788 | tableId: Id, |
| 789 | rowId: Id, |
| 790 | storeOrStoreId?: StoreOrStoreId, |
| 791 | ): Row => |
| 792 | useListenable(ROW, useStoreOrStoreById(storeOrStoreId), ReturnType.Object, [ |
| 793 | tableId, |
| 794 | rowId, |
| 795 | ]); |
| 796 | |
| 797 | export const useRowState: typeof useRowStateDecl = ( |
| 798 | tableId: Id, |
searching dependent graphs…