( storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 680 | ]; |
| 681 | |
| 682 | export const useHasValues = ( |
| 683 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 684 | ): Accessor<boolean> => |
| 685 | useListenable( |
| 686 | VALUES, |
| 687 | useStoreOrStoreById(storeOrStoreId), |
| 688 | ReturnType.Boolean, |
| 689 | [], |
| 690 | ); |
| 691 | |
| 692 | export const useValues = ( |
| 693 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
searching dependent graphs…