RNNotifications.h 376 Bytes
Newer Older
Lidan Hifi's avatar
Lidan Hifi committed
1
@import UIKit;
2
#import <PushKit/PushKit.h>
yogevbd's avatar
WIP  
yogevbd committed
3
@import UserNotifications;
Lidan Hifi's avatar
Lidan Hifi committed
4

5
@interface RNNotifications : NSObject
6

yogevbd's avatar
WIP  
yogevbd committed
7
+ (instancetype)sharedInstance;
8

yogevbd's avatar
yogevbd committed
9 10 11 12 13
+ (void)startMonitorNotifications;
+ (void)startMonitorPushKitNotifications;

+ (void)didRegisterForRemoteNotificationsWithDeviceToken:(id)deviceToken;
+ (void)didFailToRegisterForRemoteNotificationsWithError:(NSError *)error;
yogevbd's avatar
WIP  
yogevbd committed
14

Lidan Hifi's avatar
Lidan Hifi committed
15
@end