2017-03-10 14:17:37 +00:00
|
|
|
#ifndef RNFirebaseCrash_h
|
|
|
|
#define RNFirebaseCrash_h
|
2017-08-11 15:07:32 +00:00
|
|
|
#import <Foundation/Foundation.h>
|
2017-03-10 14:17:37 +00:00
|
|
|
|
2017-08-11 15:07:32 +00:00
|
|
|
#if __has_include(<FirebaseCrash/FIRCrashLog.h>)
|
2017-05-05 08:46:22 +00:00
|
|
|
#import <React/RCTBridgeModule.h>
|
2017-03-10 14:17:37 +00:00
|
|
|
|
|
|
|
@interface RNFirebaseCrash : NSObject <RCTBridgeModule> {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2017-08-11 15:07:32 +00:00
|
|
|
#else
|
|
|
|
@interface RNFirebaseCrash : NSObject
|
|
|
|
@end
|
|
|
|
#endif
|
|
|
|
|
2017-03-10 14:17:37 +00:00
|
|
|
#endif
|