mirror of
https://github.com/status-im/react-native.git
synced 2025-02-07 07:03:59 +00:00
0673ac25f1
Reviewed By: Hypuk Differential Revision: D6578735 fbshipit-source-id: ac6a3a8bae9aef7fd3b4a036c3f154b3f6b7d80c
21 lines
464 B
Objective-C
21 lines
464 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>
|
|
|
|
#if RCT_DEV
|
|
|
|
@interface RCTInspectorDevServerHelper : NSObject
|
|
|
|
+ (void)connectWithBundleURL:(NSURL *)bundleURL;
|
|
+ (void)disableDebugger;
|
|
+ (void)attachDebugger:(NSString *)owner
|
|
withBundleURL:(NSURL *)bundleURL
|
|
withView:(UIViewController *)view;
|
|
@end
|
|
|
|
#endif
|