mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-16 11:59:39 +08:00
11 lines
251 B
Objective-C
11 lines
251 B
Objective-C
@import UIKit;
|
|
|
|
#import "RCTBridgeModule.h"
|
|
|
|
@interface SmartNotifications : NSObject <RCTBridgeModule>
|
|
|
|
+ (void)didReceiveRemoteNotification:(NSDictionary *)notification;
|
|
+ (void)didReceiveLocalNotification:(UILocalNotification *)notification;
|
|
|
|
@end
|