( storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 491 | useListenable(TABLES, useStoreOrStoreById(storeOrStoreId), ReturnType.Object); |
| 492 | |
| 493 | export const useTablesState = ( |
| 494 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 495 | ): [Accessor<Tables>, (tables: Tables) => void] => [ |
| 496 | useTables(storeOrStoreId), |
| 497 | useSetTablesCallback(getArg, storeOrStoreId), |
| 498 | ]; |
| 499 | |
| 500 | export const useTableIds = ( |
| 501 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
searching dependent graphs…