mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
7d0c128174
Reviewed By: bnham Differential Revision: D5706200 fbshipit-source-id: f389222a9266819c5730860a2e3e461eb1068d0e
22 lines
484 B
Objective-C
22 lines
484 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <React/RCTDefines.h>
|
|
#import <React/RCTInspector.h>
|
|
|
|
#if RCT_DEV
|
|
|
|
@interface RCTInspectorPackagerConnection : NSObject
|
|
- (instancetype)initWithURL:(NSURL *)url;
|
|
- (void)connect;
|
|
- (void)closeQuietly;
|
|
- (void)sendEventToAllConnections:(NSString *)event;
|
|
@end
|
|
|
|
@interface RCTInspectorRemoteConnection : NSObject
|
|
- (void)onMessage:(NSString *)message;
|
|
- (void)onDisconnect;
|
|
@end
|
|
|
|
#endif
|