Appearance
High Total Cholesterol Risk
The High Total Cholesterol Risk value is sent as part of the final results.
The definition for the result includes three entries: Low, Medium, and High.
The application can receive the High Total Cholesterol Risk result by implementing the OnFinalResults callback interface:
TypeScript
import {
VitalSigns,
VitalSignsResults,
HighTotalCholesterolRiskSign,
HighTotalCholesterolRisk,
} from '@biosensesignal/web-sdk';
const onFinalResults = useCallback((vitalSignsResults: VitalSignsResults) => {
const results = vitalSignsResults.results as VitalSigns;
const highTotalCholesterolRisk = results.highTotalCholesterolRisk as HighTotalCholesterolRiskSign;
if (highTotalCholesterolRisk?.value != null) {
const risk = highTotalCholesterolRisk.value as HighTotalCholesterolRisk;
console.log(`High Total Cholesterol Risk: ${risk}`);
}
}, []);For general information about vital signs see the Vital Signs and Health Indicators Information Document.
For a list of supported indicators and their required measurement durations, see the Indicators Technical Information page.