mirror of
https://github.com/status-im/react-native-fs.git
synced 2025-03-01 07:20:33 +00:00
* change imports for react-native 0.39.x * change imports for react-native 0.40.x * order of imports matter * Fix multiple import problem
24 lines
408 B
Objective-C
24 lines
408 B
Objective-C
//
|
|
// RNFSManager.h
|
|
// RNFSManager
|
|
//
|
|
// Created by Johannes Lumpe on 08/05/15.
|
|
// Copyright (c) 2015 Johannes Lumpe. All rights reserved.
|
|
//
|
|
|
|
#if __has_include("RCTBridgeModule.h")
|
|
#import "RCTBridgeModule.h"
|
|
#else
|
|
#import <React/RCTBridgeModule.h>
|
|
#endif
|
|
|
|
#if __has_include("RCTLog.h")
|
|
#import "RCTLog.h"
|
|
#else
|
|
#import <React/RCTLog.h>
|
|
#endif
|
|
|
|
@interface RNFSManager : NSObject <RCTBridgeModule>
|
|
|
|
@end
|