Files
react-native-notifications/lib/ios/RNPushKitEventHandler.h
2019-08-13 15:09:37 +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