diff --git a/packages/react-native/ReactAndroid/api/ReactAndroid.api b/packages/react-native/ReactAndroid/api/ReactAndroid.api index 2ca2680741b978..f695a7cda486f4 100644 --- a/packages/react-native/ReactAndroid/api/ReactAndroid.api +++ b/packages/react-native/ReactAndroid/api/ReactAndroid.api @@ -460,10 +460,6 @@ public abstract interface class com/facebook/react/animated/AnimatedNodeValueLis public abstract fun onValueUpdate (D)V } -public abstract interface class com/facebook/react/animated/AnimatedNodeWithUpdateableConfig { - public abstract fun onUpdateConfig (Lcom/facebook/react/bridge/ReadableMap;)V -} - public final class com/facebook/react/animated/InterpolationAnimatedNode : com/facebook/react/animated/ValueAnimatedNode { public static final field Companion Lcom/facebook/react/animated/InterpolationAnimatedNode$Companion; public static final field EXTRAPOLATE_TYPE_CLAMP Ljava/lang/String; diff --git a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNodeWithUpdateableConfig.kt b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNodeWithUpdateableConfig.kt index bd5c8dff0a8de4..073c04a63a4616 100644 --- a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNodeWithUpdateableConfig.kt +++ b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/animated/AnimatedNodeWithUpdateableConfig.kt @@ -10,6 +10,6 @@ package com.facebook.react.animated import com.facebook.react.bridge.ReadableMap /** Indicates that AnimatedNode is able to receive native config updates. */ -public fun interface AnimatedNodeWithUpdateableConfig { - public fun onUpdateConfig(config: ReadableMap?) +internal fun interface AnimatedNodeWithUpdateableConfig { + fun onUpdateConfig(config: ReadableMap?) }