22 lines
453 B
Objective-C
22 lines
453 B
Objective-C
#ifndef RNFirebaseAuth_h
|
|
#define RNFirebaseAuth_h
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#if __has_include(<FirebaseAuth/FIRAuth.h>)
|
|
#import <Firebase.h>
|
|
#import <React/RCTBridgeModule.h>
|
|
#import <React/RCTEventEmitter.h>
|
|
|
|
@interface RNFirebaseAuth : RCTEventEmitter <RCTBridgeModule> {};
|
|
@property NSMutableDictionary *authStateHandlers;
|
|
@property NSMutableDictionary *idTokenHandlers;
|
|
|
|
@end
|
|
|
|
#else
|
|
@interface RNFirebaseAuth : NSObject
|
|
@end
|
|
#endif
|
|
|
|
#endif
|