diff --git a/packages/react-native/Libraries/Renderer/shims/ReactNativeTypes.js b/packages/react-native/Libraries/Renderer/shims/ReactNativeTypes.js index e994301ee60ea5..cf96ea78f1421b 100644 --- a/packages/react-native/Libraries/Renderer/shims/ReactNativeTypes.js +++ b/packages/react-native/Libraries/Renderer/shims/ReactNativeTypes.js @@ -7,7 +7,7 @@ * @noformat * @flow strict * @nolint - * @generated SignedSource<<1836a1b6639552dce12199ef2c85f63d>> + * @generated SignedSource<<30640e7dd83e22e14db1648ca63f4316>> */ import type {ElementRef, ElementType, Element, AbstractComponent} from 'react'; @@ -193,6 +193,10 @@ export type ReactNativeType = { findNodeHandle( componentOrHandle: ?(ElementRef | number), ): ?number, + isChildPublicInstance( + parent: PublicInstance | HostComponent, + child: PublicInstance | HostComponent, + ): boolean, dispatchCommand( handle: ElementRef>, command: string, @@ -231,6 +235,7 @@ export type ReactFabricType = { command: string, args: Array, ): void, + isChildPublicInstance(parent: PublicInstance, child: PublicInstance): boolean, sendAccessibilityEvent( handle: ElementRef>, eventType: string, diff --git a/packages/react-native/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js b/packages/react-native/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js index 0b46e3de9c9dbe..cbcdfcebfac713 100644 --- a/packages/react-native/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js +++ b/packages/react-native/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js @@ -7,7 +7,7 @@ * @noformat * @flow strict-local * @nolint - * @generated SignedSource<<3cf9b746913da1666cb5bce0ae12d978>> + * @generated SignedSource<<73af5b3fe29d226634ed64bc861634df>> */ 'use strict'; @@ -24,13 +24,11 @@ export const customBubblingEventTypes: { skipBubbling?: ?boolean, }>, }>, - ... } = {}; export const customDirectEventTypes: { [eventName: string]: $ReadOnly<{ registrationName: string, }>, - ... } = {}; const viewConfigCallbacks = new Map ViewConfig>();