UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

24 lines (23 loc) 1.52 kB
import type { ComponentClass, ComponentType, FunctionComponent } from 'react'; import '../reanimated2/layoutReanimation/animationsManager'; import type { AnimateProps } from '../reanimated2'; import type { AnimatedComponentRef } from './commonTypes'; import type { FlatList, FlatListProps } from 'react-native'; type Options<P> = { setNativeProps: (ref: AnimatedComponentRef, props: P) => void; }; /** * Lets you create an Animated version of any React Native component. * * @param component - The component you want to make animatable. * @returns A component that Reanimated is capable of animating. * @see https://docs.swmansion.com/react-native-reanimated/docs/core/createAnimatedComponent */ export declare function createAnimatedComponent<P extends object>(component: FunctionComponent<P>, options?: Options<P>): FunctionComponent<AnimateProps<P>>; export declare function createAnimatedComponent<P extends object>(component: ComponentClass<P>, options?: Options<P>): ComponentClass<AnimateProps<P>>; export declare function createAnimatedComponent<P extends object>(component: ComponentType<P>, options?: Options<P>): FunctionComponent<AnimateProps<P>> | ComponentClass<AnimateProps<P>>; /** * @deprecated Please use `Animated.FlatList` component instead of calling `Animated.createAnimatedComponent(FlatList)` manually. */ export declare function createAnimatedComponent(component: typeof FlatList<unknown>, options?: Options<any>): ComponentClass<AnimateProps<FlatListProps<unknown>>>; export {};