Files
react-native-notifications/RNNotifications/RNNotificationParser.h
yogevbd 235cffd8a4 WIP
2019-07-09 00:42:38 +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