mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
138bc8144b
Also imported react-native-alarm-notificatio into the project
10 lines
378 B
Objective-C
10 lines
378 B
Objective-C
#import <React/RCTBridgeModule.h>
|
|
#import <React/RCTEventEmitter.h>
|
|
|
|
#import <UserNotifications/UserNotifications.h>
|
|
|
|
@interface RnAlarmNotification : RCTEventEmitter <RCTBridgeModule>
|
|
+ (void)didReceiveNotificationResponse:(UNNotificationResponse *)response API_AVAILABLE(ios(10.0));
|
|
+ (void)didReceiveNotification:(UNNotification *)notification API_AVAILABLE(ios(10.0));
|
|
@end
|