( storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 690 | ); |
| 691 | |
| 692 | export const useValues = ( |
| 693 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 694 | ): Accessor<Values> => |
| 695 | useListenable(VALUES, useStoreOrStoreById(storeOrStoreId), ReturnType.Object); |
| 696 | |
| 697 | export const useValuesState = ( |
| 698 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
searching dependent graphs…