18 lines
292 B
C
18 lines
292 B
C
|
#ifndef RNFirebaseMessaging_h
|
||
|
#define RNFirebaseMessaging_h
|
||
|
|
||
|
#import "Firebase.h"
|
||
|
#import "RCTEventEmitter.h"
|
||
|
#import "RCTBridgeModule.h"
|
||
|
#import "RCTUtils.h"
|
||
|
|
||
|
@interface RNFirebaseMessaging : RCTEventEmitter <RCTBridgeModule> {
|
||
|
|
||
|
}
|
||
|
|
||
|
+ (void) setup:(UIApplication *)application;
|
||
|
|
||
|
@end
|
||
|
|
||
|
#endif
|