20 lines
471 B
Objective-C
20 lines
471 B
Objective-C
//
|
|
// RNFSManager.h
|
|
// RNFSManager
|
|
//
|
|
// Created by Johannes Lumpe on 08/05/15.
|
|
// Copyright (c) 2015 Johannes Lumpe. All rights reserved.
|
|
//
|
|
|
|
#import <React/RCTBridgeModule.h>
|
|
#import <React/RCTEventEmitter.h>
|
|
#import <React/RCTLog.h>
|
|
|
|
typedef void (^CompletionHandler)(void);
|
|
|
|
@interface RNFSManager : RCTEventEmitter <RCTBridgeModule>
|
|
|
|
+(void)setCompletionHandlerForIdentifier: (NSString *)identifier completionHandler: (CompletionHandler)completionHandler;
|
|
|
|
@end
|