2015-03-23 20:28:42 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
2015-03-16 19:33:02 +00:00
|
|
|
|
2015-03-24 12:31:11 +00:00
|
|
|
#import <UIKit/UIKit.h>
|
2015-03-16 19:33:02 +00:00
|
|
|
|
2015-04-23 15:04:16 +00:00
|
|
|
#import "RCTBridgeModule.h"
|
2015-03-16 19:33:02 +00:00
|
|
|
|
|
|
|
@interface RCTPushNotificationManager : NSObject <RCTBridgeModule>
|
|
|
|
|
2016-01-05 10:42:18 +00:00
|
|
|
+ (void)didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings;
|
|
|
|
+ (void)didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken;
|
|
|
|
+ (void)didReceiveRemoteNotification:(NSDictionary *)notification;
|
2016-02-09 13:45:23 +00:00
|
|
|
+ (void)didReceiveLocalNotification:(UILocalNotification *)notification;
|
2015-03-24 12:31:11 +00:00
|
|
|
|
2015-03-16 19:33:02 +00:00
|
|
|
@end
|