UNPKG

tdesign-react

Version:
12 lines (11 loc) 358 B
import React from 'react'; import { 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;