UNPKG

react-native-health-connect

Version:

React native library for health connect (Android only)

16 lines (13 loc) 426 B
import type { RecordType, HealthConnectRecord } from './records.types'; export interface GetChangesRequest { changesToken?: string; recordTypes?: RecordType[]; dataOriginFilter?: string[]; } export interface GetChangesResults { upsertionChanges: Array<{ record: HealthConnectRecord }>; deletionChanges: Array<{ recordId: string }>; nextChangesToken: string; changesTokenExpired: boolean; hasMore: boolean; }