react-native-reanimated-carousel
Version:
Simple carousel component.fully implemented using Reanimated 2.Infinitely scrolling, very smooth.
10 lines (9 loc) • 351 B
TypeScript
import type Animated from "react-native-reanimated";
import type { TInitializeCarouselProps } from "./useInitProps";
interface ICommonVariables {
size: number;
validLength: number;
handlerOffset: Animated.SharedValue<number>;
}
export declare function useCommonVariables(props: TInitializeCarouselProps<any>): ICommonVariables;
export {};