UNPKG

@kingstinct/react-native-healthkit

Version:
15 lines (14 loc) 393 B
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 {};