mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Fix CQS signal modernize-use-using in xplat/js/react-native-github/packages [A] [A]
Reviewed By: rshest Differential Revision: D78538428
This commit is contained in:
committed by
Facebook GitHub Bot
parent
5cda3065ce
commit
3788409cde
@@ -66,7 +66,7 @@
|
||||
|
||||
static NSString *const RCTJSThreadName = @"com.facebook.react.JavaScript";
|
||||
|
||||
typedef void (^RCTPendingCall)();
|
||||
using RCTPendingCall = void (^)();
|
||||
|
||||
using namespace facebook::jsi;
|
||||
using namespace facebook::react;
|
||||
|
||||
@@ -11,11 +11,11 @@
|
||||
|
||||
#import <jsinspector-modern/ReactCdp.h>
|
||||
|
||||
typedef facebook::react::jsinspector_modern::NetworkRequestListener RCTInspectorNetworkListener;
|
||||
using RCTInspectorNetworkListener = facebook::react::jsinspector_modern::NetworkRequestListener;
|
||||
|
||||
typedef facebook::react::jsinspector_modern::ScopedExecutor<RCTInspectorNetworkListener> RCTInspectorNetworkExecutor;
|
||||
using RCTInspectorNetworkExecutor = facebook::react::jsinspector_modern::ScopedExecutor<RCTInspectorNetworkListener>;
|
||||
|
||||
typedef facebook::react::jsinspector_modern::LoadNetworkResourceRequest RCTInspectorLoadNetworkResourceRequest;
|
||||
using RCTInspectorLoadNetworkResourceRequest = facebook::react::jsinspector_modern::LoadNetworkResourceRequest;
|
||||
|
||||
/**
|
||||
* A helper class that wraps around NSURLSession to make network requests.
|
||||
|
||||
Reference in New Issue
Block a user