UNPKG

@act-aks/rn-carousel

Version:

A performant, customizable carousel component for React Native with multiple animation types and TypeScript support.

15 lines 473 B
import { ReactNode } from 'react'; import Animated from 'react-native-reanimated'; import { AnimationType } from '../Carousel.static'; export type CarouselItemProps = { index: number; scrollValue: Animated.SharedValue<number>; containerDimension: number; spacing: number; isHorizontal: boolean; animationType: AnimationType; children: ReactNode; itemWidth: number; itemHeight: number; }; //# sourceMappingURL=CarouselItem.static.d.ts.map