2
0
mirror of synced 2025-02-22 11:08:28 +00:00

27 lines
630 B
C
Raw Normal View History

2017-03-09 15:26:28 +00:00
#ifndef RNFirebase_h
#define RNFirebase_h
#import <UIKit/UIKit.h>
#if __has_include(<React/RCTEventDispatcher.h>)
#import <React/RCTEventDispatcher.h>
#else // Compatibility for RN version < 0.40
2017-03-09 15:26:28 +00:00
#import "RCTEventDispatcher.h"
#endif
#if __has_include(<React/RCTEventEmitter.h>)
#import <React/RCTEventEmitter.h>
#else // Compatibility for RN version < 0.40
2017-03-09 15:26:28 +00:00
#import "RCTEventEmitter.h"
#endif
#if __has_include(<React/RCTBridgeModule.h>)
#import <React/RCTBridgeModule.h>
#else // Compatibility for RN version < 0.40
#import "RCTBridgeModule.h"
#endif
2017-03-09 15:26:28 +00:00
@interface RNFirebase : RCTEventEmitter <RCTBridgeModule> {
}
@end
#endif