2017-06-08 14:34:45 +00:00
|
|
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <JavaScriptCore/JSBase.h>
|
2017-12-05 14:27:32 +00:00
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2017-06-08 14:34:45 +00:00
|
|
|
#import <React/RCTDefines.h>
|
2018-02-01 14:13:19 +00:00
|
|
|
#import <React/RCTInspectorPackagerConnection.h>
|
2017-06-08 14:34:45 +00:00
|
|
|
|
|
|
|
#if RCT_DEV
|
|
|
|
|
|
|
|
@interface RCTInspectorDevServerHelper : NSObject
|
|
|
|
|
2018-02-01 14:13:19 +00:00
|
|
|
+ (RCTInspectorPackagerConnection *)connectWithBundleURL:(NSURL *)bundleURL;
|
2017-08-14 15:07:13 +00:00
|
|
|
+ (void)disableDebugger;
|
2017-12-05 14:27:32 +00:00
|
|
|
+ (void)attachDebugger:(NSString *)owner
|
|
|
|
withBundleURL:(NSURL *)bundleURL
|
|
|
|
withView:(UIViewController *)view;
|
2017-06-08 14:34:45 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
#endif
|