| 12345678910111213141516171819 |
- //
- // CParam.h
- // CParam
- //
- // Created by breeze on 2017/6/20.
- // Copyright © 2017年 Breeze. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <React/RCTBridgeModule.h>
- #import <React/RCTEventEmitter.h>
- @interface CParam : RCTEventEmitter <RCTBridgeModule>
- + (instancetype) shareInstance;
- - (NSDictionary *)cparams;
- @end
|