Files
react-native-notifications/lib/ios/RNNotificationParser.h
2019-08-13 15:09:37 +03:00

10 lines
260 B
Objective-C

#import <Foundation/Foundation.h>
@import UserNotifications;
@interface RNNotificationParser : NSObject
+ (NSDictionary *)parseNotificationResponse:(UNNotificationResponse *)response;
+ (NSDictionary *)parseNotification:(UNNotification *)notification;
@end