#import typedef void (^RCTPromiseResolveBlock)(id result); typedef void (^RCTResponseSenderBlock)(NSArray *response); typedef void (^RCTPromiseRejectBlock)(NSString *code, NSString *message, NSError *error); @import UserNotifications; @interface RNNotificationCenter : NSObject - (void)isRegisteredForRemoteNotifications:(RCTPromiseResolveBlock)resolve; - (void)requestPermissions; - (void)setCategories:(NSArray *)json; - (void)checkPermissions:(RCTPromiseResolveBlock)resolve; - (void)postLocalNotification:(NSDictionary *)notification withId:(NSNumber *)notificationId; - (void)cancelLocalNotification:(NSString *)notificationId; - (void)removeAllDeliveredNotifications; - (void)removeDeliveredNotifications:(NSArray *)identifiers; - (void)getDeliveredNotifications:(RCTResponseSenderBlock)callback; - (void)cancelAllLocalNotifications; @end