Files
react-native-notifications/RNNotifications/RNNotificationCenterMulticast.h
2019-11-20 17:43:57 +02:00

11 lines
328 B
Objective-C

#import <Foundation/Foundation.h>
#import <UserNotifications/UserNotifications.h>
@interface RNNotificationCenterMulticast : NSObject<UNUserNotificationCenterDelegate>
- (void)addNativeDelegate:(id<UNUserNotificationCenterDelegate>)delegate;
- (void)removeNativeDelegate:(id<UNUserNotificationCenterDelegate>)delegate;
@end