2015-05-08 20:05:37 +03:00
|
|
|
//
|
|
|
|
// RNFSManager.h
|
|
|
|
// RNFSManager
|
|
|
|
//
|
|
|
|
// Created by Johannes Lumpe on 08/05/15.
|
|
|
|
// Copyright (c) 2015 Johannes Lumpe. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2017-02-20 01:05:45 -08:00
|
|
|
#if __has_include("RCTBridgeModule.h")
|
|
|
|
#import "RCTBridgeModule.h"
|
|
|
|
#else
|
2017-01-10 08:09:17 -08:00
|
|
|
#import <React/RCTBridgeModule.h>
|
2017-02-20 01:05:45 -08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if __has_include("RCTLog.h")
|
|
|
|
#import "RCTLog.h"
|
|
|
|
#else
|
2017-01-10 08:09:17 -08:00
|
|
|
#import <React/RCTLog.h>
|
2017-02-20 01:05:45 -08:00
|
|
|
#endif
|
2015-05-08 20:05:37 +03:00
|
|
|
|
|
|
|
@interface RNFSManager : NSObject <RCTBridgeModule>
|
|
|
|
|
|
|
|
@end
|