2015-03-25 18:59:42 -07: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2015-04-23 08:04:16 -07:00
|
|
|
#import "RCTBridgeModule.h"
|
2015-03-25 18:59:42 -07:00
|
|
|
|
|
|
|
@interface RCTLinkingManager : NSObject <RCTBridgeModule>
|
|
|
|
|
2015-04-09 17:34:21 -07:00
|
|
|
+ (BOOL)application:(UIApplication *)application
|
|
|
|
openURL:(NSURL *)URL
|
|
|
|
sourceApplication:(NSString *)sourceApplication
|
|
|
|
annotation:(id)annotation;
|
2015-03-25 18:59:42 -07:00
|
|
|
|
2015-12-04 08:05:11 -08:00
|
|
|
+ (BOOL)application:(UIApplication *)application
|
|
|
|
continueUserActivity:(NSUserActivity *)userActivity
|
|
|
|
restorationHandler:(void (^)(NSArray *))restorationHandler;
|
|
|
|
|
2015-03-25 18:59:42 -07:00
|
|
|
@end
|