mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
7e5de4e241
Summary: See title. Changelog: [iOS][Added] - Make RedBox TurboModule-compatible Reviewed By: PeteTheHeat Differential Revision: D18142255 fbshipit-source-id: 2d130aca93a88ac7c983ce0e4848955ffb0be518
14 lines
511 B
Objective-C
14 lines
511 B
Objective-C
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <React/RCTDefines.h>
|
|
|
|
// In debug builds, the red box is enabled by default but it is further customizable using this method.
|
|
// However, this method only has an effect in builds where RCTRedBox is actually compiled in.
|
|
RCT_EXTERN void RCTRedBoxSetEnabled(BOOL enabled);
|
|
RCT_EXTERN BOOL RCTRedBoxGetEnabled(void);
|