UNPKG

tdesign-react

Version:
12 lines (11 loc) 363 B
import React from 'react'; import type { SwiperProps } from './Swiper'; export interface SwiperItemProps extends SwiperProps { currentIndex?: number; index?: number; needAnimation?: boolean; childrenLength?: number; getWrapAttribute?: (attr: string) => number; } declare const SwiperItem: React.FC<SwiperItemProps>; export default SwiperItem;