@kingstinct/react-native-healthkit
Version:
React Native bindings for HealthKit
14 lines (11 loc) • 369 B
text/typescript
import type { HybridObject } from 'react-native-nitro-modules'
interface Source {
readonly name: string
readonly bundleIdentifier: string
}
/**
* @see {@link https://developer.apple.com/documentation/healthkit/hkobject/1615781-source Apple Docs }
*/
export interface SourceProxy extends HybridObject<{ ios: 'swift' }>, Source {
toJSON(key?: string): Source
}