blob: e25456ade2f381322779d28c15dd797b0eccaf8d (
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
|
//
// POProfileModule.h
// ReactNativeIOSLibrary
//
// Created by daiqingquan on 2016/12/4.
// Copyright © 2016年 daiqingquan. All rights reserved.
//
#import <Foundation/Foundation.h>
#if __has_include(<React/RCTAssert.h>)
#import <React/RCTBridgeModule.h>
#else
#import "RCTBridgeModule.h"
#endif
@interface POProfileModule : NSObject<RCTBridgeModule>
#define POACTION @"action"
#define PO_BATTERY @"BATTERY_PO"
@end
|