mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-14 01:54:58 +08:00
16 lines
705 B
Objective-C
16 lines
705 B
Objective-C
#import <React/RCTEventEmitter.h>
|
|
|
|
static NSString* const RNRegistered = @"remoteNotificationsRegistered";
|
|
static NSString* const RNRegistrationFailed = @"remoteNotificationsRegistrationFailed";
|
|
static NSString* const RNPushKitRegistered = @"pushKitRegistered";
|
|
static NSString* const RNNotificationReceivedForeground = @"notificationReceivedForeground";
|
|
static NSString* const RNNotificationOpened = @"notificationOpened";
|
|
static NSString* const RNPushKitNotificationReceived = @"pushKitNotificationReceived";
|
|
|
|
|
|
@interface RNEventEmitter : RCTEventEmitter <RCTBridgeModule>
|
|
|
|
+ (void)sendEvent:(NSString *)event body:(NSDictionary *)body;
|
|
|
|
@end
|