2015-03-23 13:28:42 -07:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-16 18:24:55 -08:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-03-23 13:28:42 -07:00
|
|
|
*/
|
2015-03-19 09:55:40 -07:00
|
|
|
|
2016-11-23 07:47:52 -08:00
|
|
|
#import <React/RCTDefines.h>
|
|
|
|
#import <React/RCTJavaScriptExecutor.h>
|
2015-03-19 09:55:40 -07:00
|
|
|
|
2016-11-21 07:02:58 -08:00
|
|
|
#if RCT_DEV // Debug executors are only supported in dev mode
|
|
|
|
|
2015-03-19 09:55:40 -07:00
|
|
|
@interface RCTWebSocketExecutor : NSObject <RCTJavaScriptExecutor>
|
|
|
|
|
2015-11-25 03:09:00 -08:00
|
|
|
- (instancetype)initWithURL:(NSURL *)URL;
|
2015-03-19 09:55:40 -07:00
|
|
|
|
|
|
|
@end
|
2015-04-21 09:48:29 -07:00
|
|
|
|
|
|
|
#endif
|