22 lines
484 B
C
22 lines
484 B
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
|