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,