UNPKG

542 BTypeScriptView Raw
1import * as React from 'react';
2
3declare namespace CarouselItem {
4 interface CarouselItemProps extends React.HTMLProps<CarouselItem> {
5 active?: boolean | undefined;
6 animtateIn?: boolean | undefined;
7 animateOut?: boolean | undefined;
8 direction?: string | undefined;
9 index?: number | undefined;
10 // TODO: Add more specific type
11 onAnimateOutEnd?: Function | undefined;
12 }
13}
14declare class CarouselItem extends React.Component<CarouselItem.CarouselItemProps> { }
15export = CarouselItem;