RNPLocation.h 377B

123456789101112131415161718
  1. //
  2. // RNPLocation.h
  3. // ReactNativePermissions
  4. //
  5. // Created by Yonah Forst on 11/07/16.
  6. // Copyright © 2016 Yonah Forst. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "RCTConvert+RNPStatus.h"
  10. @interface RNPLocation : NSObject
  11. + (NSString *)getStatus;
  12. - (void)request:(NSString *)type completionHandler:(void (^)(NSString *))completionHandler;
  13. @end