Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

HeartRateVariability

import type { HeartRateVariability } from "https://googleapis.deno.dev/v1/health:v4.ts";

Captures user's heart rate variability (HRV) as measured by the root mean square of successive differences (RMSSD) between normal heartbeats or by standard deviation of the inter-beat intervals (SDNN).

interface HeartRateVariability {
rootMeanSquareOfSuccessiveDifferencesMilliseconds?: number;
sampleTime?: ObservationSampleTime;
standardDeviationMilliseconds?: number;
}

§Properties

§
rootMeanSquareOfSuccessiveDifferencesMilliseconds?: number
[src]

Optional. The root mean square of successive differences between normal heartbeats. This is a measure of heart rate variability used by Fitbit.

§

Required. The time of the heart rate variability measurement.

§
standardDeviationMilliseconds?: number
[src]

Optional. The standard deviation of the heart rate variability measurement.