123456789101112131415161718 |
- //
- // RNPMediaLibrary.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 RNPMediaLibrary : NSObject
-
- + (NSString *)getStatus;
- + (void)request:(void (^)(NSString *))completionHandler;
-
- @end
|