Files
react-native-notifications/RNNotifications/RNPushKitEventHandler.h
2019-07-09 13:10:31 +03:00

11 lines
258 B
Objective-C

#import <Foundation/Foundation.h>
#import "RNNotificationEventHandler.h"
@interface RNPushKitEventHandler : RNNotificationEventHandler
- (void)registeredWithToken:(NSString *)token;
- (void)didReceiveIncomingPushWithPayload:(NSDictionary *)payload;
@end