( tableId: MaybeAccessor<Id>, storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 518 | ); |
| 519 | |
| 520 | export const useTable = ( |
| 521 | tableId: MaybeAccessor<Id>, |
| 522 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 523 | ): Accessor<Table> => |
| 524 | useListenable(TABLE, useStoreOrStoreById(storeOrStoreId), ReturnType.Object, [ |
| 525 | tableId, |
| 526 | ]); |
| 527 | export const useTableState = ( |
| 528 | tableId: MaybeAccessor<Id>, |
| 529 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
searching dependent graphs…