Appearance
Heart Age
The Heart Age value is sent as part of the final results.
The User Information is required to calculate the Heart Age result. If any details are missing from the User Information, the Heart Age will not be calculated. For more information on User Information, see the User Information page.
The application can receive the Heart Age result by implementing the OnFinalResults callback interface:
TypeScript
import {
VitalSigns,
VitalSignsResults,
HeartAgeSign,
} from '@biosensesignal/web-sdk';
const onFinalResults = useCallback((vitalSignsResults: VitalSignsResults) => {
const results = vitalSignsResults.results as VitalSigns;
const heartAge = results.heartAge as HeartAgeSign;
if (heartAge?.value != null) {
console.log(`Heart Age: ${heartAge.value}`);
}
}, []);For general information about vital signs see the Vital Signs and Health Indicators Information Document.
For a list of supported vital signs per platform see the Supported Vital Signs Document and the System Requirements pages.