forked from wkh237/react-native-fetch-blob
-
Notifications
You must be signed in to change notification settings - Fork 794
/
Copy pathRNFetchBlob.h
45 lines (30 loc) · 857 Bytes
/
RNFetchBlob.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
// RNFetchBlob.h
//
// Created by wkh237 on 2016/4/28.
//
//XXX: DO NO REMOVE THIS LINE IF YOU'RE USING IT ON RN > 0.40 PROJECT
#ifndef RNFetchBlob_h
#define RNFetchBlob_h
#if __has_include(<React/RCTAssert.h>)
#import <React/RCTLog.h>
#import <React/RCTRootView.h>
#import <React/RCTBridge.h>
#import <React/RCTEventDispatcher.h>
#import <React/RCTBridgeModule.h>
#else
#import "RCTBridgeModule.h"
#import "RCTLog.h"
#import "RCTRootView.h"
#import "RCTBridge.h"
#import "RCTEventDispatcher.h"
#endif
#import <UIKit/UIKit.h>
@interface RNFetchBlob : NSObject <RCTBridgeModule, UIDocumentInteractionControllerDelegate> {
NSString * filePathPrefix;
}
@property (nonatomic) NSString * filePathPrefix;
@property (retain) UIDocumentInteractionController * documentController;
+ (RCTBridge *)getRCTBridge;
@end
#endif /* RNFetchBlob_h */