mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Create feature flag for DOM trees in Fabric
Summary: Changelog: [internal] Reviewed By: rshest Differential Revision: D44088652 fbshipit-source-id: a289b6abbc46141943bb99d9003972eec84ba2da
This commit is contained in:
committed by
Facebook GitHub Bot
parent
6c208c24d5
commit
913732b3a4
@@ -41,6 +41,10 @@ export type FeatureFlags = {|
|
||||
* implementation
|
||||
*/
|
||||
isGlobalWebPerformanceLoggerEnabled: () => boolean,
|
||||
/**
|
||||
* Enables access to the host tree in Fabric using DOM-compatible APIs.
|
||||
*/
|
||||
enableAccessToHostTreeInFabric: () => boolean,
|
||||
|};
|
||||
|
||||
const ReactNativeFeatureFlags: FeatureFlags = {
|
||||
@@ -50,6 +54,7 @@ const ReactNativeFeatureFlags: FeatureFlags = {
|
||||
animatedShouldDebounceQueueFlush: () => false,
|
||||
animatedShouldUseSingleOp: () => false,
|
||||
isGlobalWebPerformanceLoggerEnabled: () => false,
|
||||
enableAccessToHostTreeInFabric: () => false,
|
||||
};
|
||||
|
||||
module.exports = ReactNativeFeatureFlags;
|
||||
|
||||
Reference in New Issue
Block a user