2017-03-09 15:26:28 +00:00
|
|
|
#ifndef RNFirebaseStorage_h
|
|
|
|
#define RNFirebaseStorage_h
|
2017-08-11 15:07:32 +00:00
|
|
|
#import <Foundation/Foundation.h>
|
2017-03-09 15:26:28 +00:00
|
|
|
|
2017-05-31 14:53:08 +00:00
|
|
|
#if __has_include(<FirebaseStorage/FIRStorage.h>)
|
2017-08-11 15:07:32 +00:00
|
|
|
#import <React/RCTBridgeModule.h>
|
2017-05-31 14:53:08 +00:00
|
|
|
#import <React/RCTEventEmitter.h>
|
|
|
|
|
|
|
|
@interface RNFirebaseStorage : RCTEventEmitter<RCTBridgeModule> {
|
2017-03-09 15:26:28 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2017-05-31 14:53:08 +00:00
|
|
|
#else
|
2017-08-11 15:07:32 +00:00
|
|
|
@interface RNFirebaseStorage : NSObject
|
2017-05-31 14:53:08 +00:00
|
|
|
@end
|
|
|
|
#endif
|
|
|
|
|
2017-03-09 15:26:28 +00:00
|
|
|
#endif
|