2017-05-25 09:39:54 +00:00
|
|
|
#ifndef RNFirebasePerformance_h
|
|
|
|
#define RNFirebasePerformance_h
|
2017-08-11 15:07:32 +00:00
|
|
|
#import <Foundation/Foundation.h>
|
2017-05-25 09:39:54 +00:00
|
|
|
|
2017-08-11 15:07:32 +00:00
|
|
|
#if __has_include(<FirebasePerformance/FIRPerformance.h>)
|
2017-05-25 09:39:54 +00:00
|
|
|
#import <React/RCTBridgeModule.h>
|
|
|
|
|
|
|
|
@interface RNFirebasePerformance : NSObject <RCTBridgeModule> {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@property NSMutableDictionary *traces;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2017-08-11 15:07:32 +00:00
|
|
|
#else
|
|
|
|
@interface RNFirebasePerformance : NSObject
|
|
|
|
@end
|
|
|
|
#endif
|
|
|
|
|
2017-05-25 09:39:54 +00:00
|
|
|
#endif
|