19 lines
543 B
Objective-C
19 lines
543 B
Objective-C
#ifndef RNFirebaseUtil_h
|
|
#define RNFirebaseUtil_h
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <React/RCTEventEmitter.h>
|
|
#import <Firebase.h>
|
|
|
|
@interface RNFirebaseUtil : NSObject
|
|
|
|
+ (FIRApp *)getApp:(NSString *)appDisplayName;
|
|
+ (NSString *)getAppName:(NSString *)appDisplayName;
|
|
+ (NSString *)getAppDisplayName:(NSString *)appName;
|
|
+ (void)sendJSEvent:(RCTEventEmitter *)emitter name:(NSString *)name body:(id)body;
|
|
+ (void)sendJSEventWithAppName:(RCTEventEmitter *)emitter app:(FIRApp *)app name:(NSString *)name body:(id)body;
|
|
|
|
@end
|
|
|
|
#endif
|