#ifndef RNFirebaseNotifications_h #define RNFirebaseNotifications_h #import #if __has_include() #import #import @interface RNFirebaseNotifications : RCTEventEmitter + (void)configure; + (_Nonnull instancetype)instance; #if !TARGET_OS_TV - (void)didReceiveLocalNotification:(nonnull UILocalNotification *)notification; - (void)didReceiveRemoteNotification:(nonnull NSDictionary *)userInfo fetchCompletionHandler:(void (^_Nonnull)(UIBackgroundFetchResult))completionHandler; #endif @end #else @interface RNFirebaseNotifications : NSObject @end #endif #endif