( storeOrStoreId?: StoreOrStoreId, )
| 866 | useListenable(VALUES, useStoreOrStoreById(storeOrStoreId), ReturnType.Object); |
| 867 | |
| 868 | export const useValuesState: typeof useValuesStateDecl = ( |
| 869 | storeOrStoreId?: StoreOrStoreId, |
| 870 | ): [Values, (values: Values) => void] => [ |
| 871 | useValues(storeOrStoreId), |
| 872 | useSetValuesCallback(getArg, [], storeOrStoreId), |
| 873 | ]; |
| 874 | |
| 875 | export const useValueIds: typeof useValueIdsDecl = ( |
| 876 | storeOrStoreId?: StoreOrStoreId, |