Compare commits

...
Author SHA1 Message Date
CodemodService Bot 57531c1496 Fix CQS signal modernize-use-using in xplat/js/react-native-github/packages/react-native/React/CoreModules
Reviewed By: dtolnay

Differential Revision: D77990272
2025-07-09 18:51:57 -07:00
4 changed files with 4 additions and 4 deletions
@@ -78,7 +78,7 @@ RCT_EXTERN NSString *const RCTShowDevMenuNotification;
@end
typedef NSString * (^RCTDevMenuItemTitleBlock)(void);
using RCTDevMenuItemTitleBlock = NSString * (^)();
/**
* Developer menu item, used to expose additional functionality via the menu.
@@ -87,7 +87,7 @@ RCT_NOT_IMPLEMENTED(-(instancetype)init)
@end
typedef void (^RCTDevMenuAlertActionHandler)(UIAlertAction *action);
using RCTDevMenuAlertActionHandler = void (^)(UIAlertAction *__strong);
@interface RCTDevMenu () <RCTBridgeModule, RCTInvalidating, NativeDevMenuSpec>
@@ -39,7 +39,7 @@ static NSString *const RCTPerfMonitorCellIdentifier = @"RCTPerfMonitorCellIdenti
static const CGFloat RCTPerfMonitorBarHeight = 50;
static const CGFloat RCTPerfMonitorExpandHeight = 250;
typedef BOOL (*RCTJSCSetOptionType)(const char *);
using RCTJSCSetOptionType = BOOL (*)(const char *);
NSArray<NSString *> *LabelsForRCTPerformanceLoggerTags();
@@ -12,7 +12,7 @@
@class RCTJSStackFrame;
typedef void (^RCTRedBoxButtonPressHandler)(void);
using RCTRedBoxButtonPressHandler = void (^)();
@interface RCTRedBox : NSObject <RCTBridgeModule>