UNPKG

react-multi-carousel-18

Version:

Production-ready, lightweight fully customizable React carousel component that rocks supports multiple items and SSR(Server-side rendering) with typescript.

7 lines (6 loc) 325 B
import { CarouselInternalState, CarouselProps } from "../types"; interface NextSlidesTable { [key: number]: number; } declare function getLookupTableForNextSlides(numberOfDotsToShow: number, state: CarouselInternalState, props: CarouselProps, childrenArr: any[]): NextSlidesTable; export { getLookupTableForNextSlides };