mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-11 00:08:50 +08:00
10 lines
260 B
Objective-C
10 lines
260 B
Objective-C
#import <Foundation/Foundation.h>
|
|
@import UserNotifications;
|
|
|
|
@interface RNNotificationParser : NSObject
|
|
|
|
+ (NSDictionary *)parseNotificationResponse:(UNNotificationResponse *)response;
|
|
+ (NSDictionary *)parseNotification:(UNNotification *)notification;
|
|
|
|
@end
|