mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-20 03:58:23 +08:00
14 lines
510 B
Objective-C
14 lines
510 B
Objective-C
#import <Foundation/Foundation.h>
|
|
@import UserNotifications;
|
|
#import "RNNotificationsStore.h"
|
|
|
|
@interface RNNotificationEventHandler : NSObject
|
|
|
|
- (instancetype)initWithStore:(RNNotificationsStore *)store;
|
|
|
|
- (void)didReceiveForegroundPayload:(NSDictionary *)payload;
|
|
- (void)didOpenNotificationPayload:(NSDictionary *)payload;
|
|
- (void)handleActionWithIdentifier:(NSString *)identifier forPayload:(NSDictionary *)payload withResponse:(NSString *)response completionHandler:(void (^)())completionHandler;
|
|
|
|
@end
|