ExerciseEvent
import type { ExerciseEvent } from "https://googleapis.deno.dev/v1/health:v4.ts";Represents instantaneous events that happen during an exercise, such as start, stop, pause, split.
interface ExerciseEvent {
eventTime?: Date;
eventUtcOffset?: number;
exerciseEventType?:
} | "EXERCISE_EVENT_TYPE_UNSPECIFIED"
| "START"
| "STOP"
| "PAUSE"
| "RESUME"
| "AUTO_PAUSE"
| "AUTO_RESUME";