mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 20:44:10 +00:00
41504103ce
Reviewed By: bnham Differential Revision: D5594238 fbshipit-source-id: feff9f179534c8e617f8fa7c8a7b1bc525c07cae
17 lines
358 B
Objective-C
17 lines
358 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <JavaScriptCore/JSBase.h>
|
|
#import <React/RCTDefines.h>
|
|
|
|
#if RCT_DEV
|
|
|
|
@interface RCTInspectorDevServerHelper : NSObject
|
|
|
|
+ (void)connectForContext:(JSGlobalContextRef)context
|
|
withBundleURL:(NSURL *)bundleURL;
|
|
+ (void)disableDebugger;
|
|
@end
|
|
|
|
#endif
|