mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
10 lines
378 B
C
10 lines
378 B
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
|