// // RCTAppleHealthKit.h // RCTAppleHealthKit // // Created by Greg Wilson on 2016-06-26.
// Copyright © 2016 Greg Wilson. All rights reserved.
// #import <Foundation/Foundation.h> #import <HealthKit/HealthKit.h>
#import <React/RCTBridgeModule.h> #import <React/RCTUtils.h> #import <React/RCTLog.h>
@interface RCTAppleHealthKit : NSObject <RCTBridgeModule> @property (nonatomic) HKHealthStore *healthStore;
- (void)isHealthKitAvailable:(RCTResponseSenderBlock)callback; - (void)initializeHealthKit:(NSDictionary *)input callback:(RCTResponseSenderBlock)callback; - (void)getModuleInfo:(NSDictionary *)input callback:(RCTResponseSenderBlock)callback; @end