// // RNFileBackgroundDownload.h // EkoApp // // Created by Elad Gil on 20/11/2017. // Copyright © 2017 Eko. All rights reserved. // // #import #if __has_include() #import #import #elif __has_include("RCTBridgeModule.h") #import "RCTBridgeModule.h" #import "RCTEventEmitter.h" #endif typedef void (^CompletionHandler)(); @interface RNBackgroundDownloader : RCTEventEmitter + (void)setCompletionHandlerWithIdentifier:(NSString *)identifier completionHandler:(CompletionHandler)completionHandler; @end