#import #import #import @import UserNotifications; @interface RNFIRMessaging : NSObject @property (nonatomic, assign) bool connectedToFCM; #if !TARGET_OS_TV + (void)didReceiveRemoteNotification:(nonnull NSDictionary *)userInfo fetchCompletionHandler:(nonnull void (^)(UIBackgroundFetchResult))completionHandler; + (void)didReceiveLocalNotification:(nonnull UILocalNotification *)notification; + (void)didReceiveNotificationResponse:(nonnull UNNotificationResponse *)response withCompletionHandler:(nonnull void (^)())completionHandler; + (void)willPresentNotification:(nonnull UNNotification *)notification withCompletionHandler:(nonnull void (^)(UNNotificationPresentationOptions))completionHandler; #endif @end