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>
|
|
|
|
|
2015-03-24 12:31:11 +00:00
|
|
|
+ (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings;
|
2015-06-03 21:11:20 +00:00
|
|
|
+ (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken;
|
2015-03-24 12:31:11 +00:00
|
|
|
+ (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)notification;
|
|
|
|
|
2015-03-16 19:33:02 +00:00
|
|
|
@end
|