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

30 lines
1.1 KiB
C
Raw Normal View History

2017-03-09 15:26:28 +00:00
#ifndef RNFirebaseMessaging_h
#define RNFirebaseMessaging_h
#endif
#import <UIKit/UIKit.h>
2017-03-09 15:26:28 +00:00
#import "Firebase.h"
#import "RCTEventEmitter.h"
#import "RCTBridgeModule.h"
#import "RCTUtils.h"
@import UserNotifications;
2017-03-09 15:26:28 +00:00
@interface RNFirebaseMessaging : NSObject <RCTBridgeModule>
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 fetchCompletionHandler:(nonnull RCTRemoteNotificationCallback)completionHandler;
+ (void)didReceiveLocalNotification:(nonnull UILocalNotification *)notification;
+ (void)didReceiveNotificationResponse:(nonnull UNNotificationResponse *)response withCompletionHandler:(nonnull RCTNotificationResponseCallback)completionHandler;
+ (void)willPresentNotification:(nonnull UNNotification *)notification withCompletionHandler:(nonnull RCTWillPresentNotificationCallback)completionHandler;
2017-03-09 15:26:28 +00:00
#endif
@end