mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
88980f2ef7
Reviewed By: pakoito Differential Revision: D6807480 fbshipit-source-id: d71f2cecd882c47e79bb71dfb9d03d3597fa4068
22 lines
541 B
Objective-C
22 lines
541 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <JavaScriptCore/JSBase.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <React/RCTDefines.h>
|
|
#import <React/RCTInspectorPackagerConnection.h>
|
|
|
|
#if RCT_DEV
|
|
|
|
@interface RCTInspectorDevServerHelper : NSObject
|
|
|
|
+ (RCTInspectorPackagerConnection *)connectWithBundleURL:(NSURL *)bundleURL;
|
|
+ (void)disableDebugger;
|
|
+ (void)attachDebugger:(NSString *)owner
|
|
withBundleURL:(NSURL *)bundleURL
|
|
withView:(UIViewController *)view;
|
|
@end
|
|
|
|
#endif
|