2017-03-10 14:17:37 +00:00
|
|
|
#ifndef RNFirebaseCrash_h
|
|
|
|
#define RNFirebaseCrash_h
|
|
|
|
|
2017-05-05 08:46:22 +00:00
|
|
|
#if __has_include(<React/RCTBridgeModule.h>)
|
|
|
|
#import <React/RCTBridgeModule.h>
|
|
|
|
#else // Compatibility for RN version < 0.40
|
2017-03-10 14:17:37 +00:00
|
|
|
#import "RCTBridgeModule.h"
|
2017-05-05 08:46:22 +00:00
|
|
|
#endif
|
2017-03-10 14:17:37 +00:00
|
|
|
|
|
|
|
@interface RNFirebaseCrash : NSObject <RCTBridgeModule> {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
#endif
|