Brak opisu

RNFetchBlob.h 482B

123456789101112131415161718192021222324252627
  1. //
  2. // RNFetchBlob.h
  3. //
  4. // Created by wkh237 on 2016/4/28.
  5. //
  6. #ifndef RNFetchBlob_h
  7. #define RNFetchBlob_h
  8. #import "RCTBridgeModule.h"
  9. #import <UIKit/UIKit.h>
  10. @interface RNFetchBlob : NSObject <RCTBridgeModule, UIDocumentInteractionControllerDelegate> {
  11. NSString * filePathPrefix;
  12. }
  13. @property (nonatomic) NSString * filePathPrefix;
  14. @property (nonatomic) UIDocumentInteractionController * documentController;
  15. + (RCTBridge *)getRCTBridge;
  16. @end
  17. #endif /* RNFetchBlob_h */