1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/react-native-alarm-notification/ios/RnAlarmNotification.h

10 lines
378 B
C
Raw Normal View History

#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