| 1234567891011121314151617 |
- //
- // RNPEvent.h
- // ReactNativePermissions
- //
- // Created by Yonah Forst on 11/07/16.
- // Copyright © 2016 Yonah Forst. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "RCTConvert+RNPStatus.h"
- @interface RNPEvent : NSObject
- + (NSString *)getStatus:(NSString *)type;
- + (void)request:(NSString *)type completionHandler:(void (^)(NSString *))completionHandler;
- @end
|