react-native-firebase/ios/RNFirebase/RNFirebaseMessaging.h

34 lines
1.0 KiB
C
Raw Normal View History

2017-03-09 15:26:28 +00:00
#ifndef RNFirebaseMessaging_h
#define RNFirebaseMessaging_h
#import <React/RCTBridgeModule.h>
2017-03-09 15:26:28 +00:00
#if __has_include(<FirebaseMessaging/FirebaseMessaging.h>)
#import <FirebaseMessaging/FirebaseMessaging.h>
#import <React/RCTEventEmitter.h>
@import UserNotifications;
2017-03-09 15:26:28 +00:00
@interface RNFirebaseMessaging : RCTEventEmitter<RCTBridgeModule, FIRMessagingDelegate>
2017-03-09 15:26:28 +00:00
typedef void (^RCTRemoteNotificationCallback)(UIBackgroundFetchResult result);
typedef void (^RCTWillPresentNotificationCallback)(UNNotificationPresentationOptions result);
typedef void (^RCTNotificationResponseCallback)();
2017-03-09 15:26:28 +00:00
@property (nonatomic, assign) bool connectedToFCM;
2017-03-09 15:26:28 +00:00
#if !TARGET_OS_TV
+ (void)didReceiveRemoteNotification:(nonnull NSDictionary *)userInfo;
+ (void)didReceiveRemoteNotification:(nonnull NSDictionary *)userInfo fetchCompletionHandler:(nonnull RCTRemoteNotificationCallback)completionHandler;
+ (void)didReceiveLocalNotification:(nonnull UILocalNotification *)notification;
2017-03-09 15:26:28 +00:00
#endif
@end
#else
@interface RNFirebaseMessaging : NSObject<RCTBridgeModule>
@end
#endif
#endif