2
0
mirror of synced 2025-01-10 14:16:27 +00:00

21 lines
405 B
C
Raw Normal View History

2017-03-09 15:26:28 +00:00
#ifndef RNFirebaseAuth_h
#define RNFirebaseAuth_h
2017-08-11 16:07:32 +01:00
#import <Foundation/Foundation.h>
2017-03-09 15:26:28 +00:00
#if __has_include(<FirebaseAuth/FIRAuth.h>)
#import <Firebase.h>
2017-08-11 16:07:32 +01:00
#import <React/RCTBridgeModule.h>
#import <React/RCTEventEmitter.h>
@interface RNFirebaseAuth : RCTEventEmitter <RCTBridgeModule> {};
@property NSMutableDictionary *authStateHandlers;
2017-03-09 15:26:28 +00:00
@end
#else
2017-08-11 16:07:32 +01:00
@interface RNFirebaseAuth : NSObject
@end
#endif
2017-03-09 15:26:28 +00:00
#endif