UNPKG

react-native-health-connect

Version:

React native library for health connect (Android only)

18 lines (14 loc) 416 B
import type { RecordType } from './records.types'; export interface Permission { accessType: 'read' | 'write'; recordType: RecordType; } export interface WriteExerciseRoutePermission { accessType: 'write'; recordType: 'ExerciseRoute'; } export * from './records.types'; export * from './results.types'; export * from './aggregate.types'; export * from './changes.types'; export * from './metadata.types';