( tableId: Id, storeOrStoreId?: StoreOrStoreId, )
| 686 | ); |
| 687 | |
| 688 | export const useTable: typeof useTableDecl = ( |
| 689 | tableId: Id, |
| 690 | storeOrStoreId?: StoreOrStoreId, |
| 691 | ): Table => |
| 692 | useListenable(TABLE, useStoreOrStoreById(storeOrStoreId), ReturnType.Object, [ |
| 693 | tableId, |
| 694 | ]); |
| 695 | |
| 696 | export const useTableState: typeof useTableStateDecl = ( |
| 697 | tableId: Id, |
searching dependent graphs…