diff --git a/Libraries/ReactNative/ReactNativeFeatureFlags.js b/Libraries/ReactNative/ReactNativeFeatureFlags.js index 887a30419f4c63..8881d287fe5727 100644 --- a/Libraries/ReactNative/ReactNativeFeatureFlags.js +++ b/Libraries/ReactNative/ReactNativeFeatureFlags.js @@ -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;