( storeOrStoreId?: StoreOrStoreId, )
| 851 | ]; |
| 852 | |
| 853 | export const useHasValues: typeof useHasValuesDecl = ( |
| 854 | storeOrStoreId?: StoreOrStoreId, |
| 855 | ): boolean => |
| 856 | useListenable( |
| 857 | VALUES, |
| 858 | useStoreOrStoreById(storeOrStoreId), |
| 859 | ReturnType.Boolean, |
| 860 | [], |
| 861 | ); |
| 862 | |
| 863 | export const useValues: typeof useValuesDecl = ( |
| 864 | storeOrStoreId?: StoreOrStoreId, |
searching dependent graphs…