UNPKG

fitbit-api-client

Version:
21 lines 486 B
/** * 酸素飽和度のレスポンス */ export interface SpO2IntradayResponse { localDate: string; dataset: SpO2IntradayData[]; } export declare function SpO2IntradayResponseFromJson(offsetFromUTCMillis: number, json: unknown): SpO2IntradayResponse | null; export interface SpO2IntradayData { /** * 時間 * @type {Date} */ dateTime: Date; /** * 心拍数 * @type {number} */ value: number; } //# sourceMappingURL=spo2.d.ts.map