@kingstinct/react-native-healthkit
Version:
React Native bindings for HealthKit
15 lines (14 loc) • 393 B
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;
}
export {};