2
0
mirror of synced 2025-01-10 14:16:27 +00:00
2017-09-21 16:48:54 +01:00

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