mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
5df92fb06c
Summary: controling -> controlling ## Changelog [Internal] [Fixed] - Fixed typo in comment Pull Request resolved: https://github.com/facebook/react-native/pull/31049 Test Plan: NONE Reviewed By: lunaleaps Differential Revision: D29980007 Pulled By: charlesbdudley fbshipit-source-id: 419f28f08d74faa07db18a07ab41b62c41776344
24 lines
541 B
C++
24 lines
541 B
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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
struct Constants {
|
|
/*
|
|
Flag controlling props forwarding when shadow node is cloned on Android.
|
|
Has no effect on iOS.
|
|
*/
|
|
static void setPropsForwardingEnabled(bool propsForwardingEnabled);
|
|
static bool getPropsForwardingEnabled();
|
|
};
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|