Sin descripción

RNFetchBlob.h 650B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // RNFetchBlob.h
  3. //
  4. // Created by wkh237 on 2016/4/28.
  5. //
  6. // comment out this line if your RN project >= 0.40
  7. #define OLD_IMPORT
  8. #ifndef RNFetchBlob_h
  9. #define RNFetchBlob_h
  10. #ifdef OLD_IMPORT
  11. #import "RCTBridgeModule.h"
  12. #else
  13. #import "<React/RCTBridgeModule.h>"
  14. #endif
  15. #import <UIKit/UIKit.h>
  16. @interface RNFetchBlob : NSObject <RCTBridgeModule, UIDocumentInteractionControllerDelegate> {
  17. NSString * filePathPrefix;
  18. }
  19. @property (nonatomic) NSString * filePathPrefix;
  20. @property (retain) UIDocumentInteractionController * documentController;
  21. + (RCTBridge *)getRCTBridge;
  22. + (void) checkExpiredSessions;
  23. @end
  24. #endif /* RNFetchBlob_h */