blob: 2719f9d2e45076c60cdbf05cc932687894980ed7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
//
// iHealthDeviceManagerModule.h
// ReactNativeIOSLibrary
//
// Created by daiqingquan on 2016/11/23.
// Copyright © 2016年 daiqingquan. All rights reserved.
//
#import <Foundation/Foundation.h>
#if __has_include(<React/RCTEventEmitter.h>)
#import <React/RCTEventEmitter.h>
#else
#import "RCTEventEmitter.h"
#endif
@interface iHealthDeviceManagerModule : RCTEventEmitter<RCTBridgeModule>
{
NSDictionary *bg1IdpsDic;
}
+ (NSString*)autherizedUserID;
+ (NSString*)autherizedClientID;
+ (NSString*)autherizedClientSecret;
@end
|