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-01-10 08:09:17 -08:00
|
|
|
#import <React/RCTBridgeModule.h>
|
|
|
|
#import <React/RCTLog.h>
|
2015-05-08 20:05:37 +03:00
|
|
|
|
2017-08-22 11:22:27 +03:00
|
|
|
typedef void (^CompletionHandler)();
|
|
|
|
|
2015-05-08 20:05:37 +03:00
|
|
|
@interface RNFSManager : NSObject <RCTBridgeModule>
|
|
|
|
|
2017-08-22 11:22:27 +03:00
|
|
|
+(void)setCompletionHandlerForIdentifier: (NSString *)identifier completionHandler: (CompletionHandler)completionHandler;
|
|
|
|
|
2015-05-08 20:05:37 +03:00
|
|
|
@end
|