2
0
mirror of synced 2025-01-12 15:14:39 +00:00

20 lines
324 B
C
Raw Normal View History

2017-03-09 15:26:28 +00:00
#ifndef RNFirebaseAnalytics_h
#define RNFirebaseAnalytics_h
2017-08-11 16:07:32 +01:00
#import <Foundation/Foundation.h>
2017-03-09 15:26:28 +00:00
2017-08-11 16:07:32 +01:00
#if __has_include(<FirebaseAnalytics/FIRAnalytics.h>)
#import <React/RCTBridgeModule.h>
2017-03-09 15:26:28 +00:00
@interface RNFirebaseAnalytics : NSObject <RCTBridgeModule> {
}
@end
2017-08-11 16:07:32 +01:00
#else
@interface RNFirebaseAnalytics : NSObject
@end
#endif
2017-03-09 15:26:28 +00:00
#endif