From cadabed06e68df15264374e1afdcef7a8cf59e9f Mon Sep 17 00:00:00 2001 From: Jakub Piasecki Date: Tue, 25 Nov 2025 15:10:02 +0100 Subject: [PATCH] Export `NativeEventsManager` --- .../src/createAnimatedComponent/index.ts | 1 + packages/react-native-reanimated/src/index.ts | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/react-native-reanimated/src/createAnimatedComponent/index.ts b/packages/react-native-reanimated/src/createAnimatedComponent/index.ts index b6c6176ebc3e..c800d0944d5e 100644 --- a/packages/react-native-reanimated/src/createAnimatedComponent/index.ts +++ b/packages/react-native-reanimated/src/createAnimatedComponent/index.ts @@ -2,3 +2,4 @@ export type { AnimatedProps } from './commonTypes'; export type { AnimatedComponentType } from './createAnimatedComponent'; export { createAnimatedComponent } from './createAnimatedComponent'; +export { NativeEventsManager } from './NativeEventsManager'; diff --git a/packages/react-native-reanimated/src/index.ts b/packages/react-native-reanimated/src/index.ts index 9b80085f552a..9117115c7bba 100644 --- a/packages/react-native-reanimated/src/index.ts +++ b/packages/react-native-reanimated/src/index.ts @@ -14,7 +14,6 @@ import * as Animated from './Animated'; export default Animated; -export { createAnimatedComponent } from './Animated'; export type { DecayAnimation, DelayAnimation, @@ -103,6 +102,10 @@ export { isReanimated3, makeMutable, } from './core'; +export { + createAnimatedComponent, + NativeEventsManager, +} from './createAnimatedComponent'; export * from './css'; export type { EasingFunctionFactory } from './Easing'; export { Easing } from './Easing';