fitbit-api-client
Version:
## ⚠️ This SDK is not ready for production
21 lines • 486 B
TypeScript
/**
* 酸素飽和度のレスポンス
*/
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