mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
20 lines
514 B
TypeScript
20 lines
514 B
TypeScript
import * as React from 'react';
|
|
import { CSSModule } from './index';
|
|
|
|
export interface CarouselItemProps extends React.HTMLAttributes<HTMLElement> {
|
|
[key: string]: any;
|
|
tag?: React.ElementType;
|
|
in?: boolean;
|
|
cssModule?: CSSModule;
|
|
slide?: boolean;
|
|
onEnter?: () => void;
|
|
onEntering?: () => void;
|
|
onEntered?: () => void;
|
|
onExit?: () => void;
|
|
onExiting?: () => void;
|
|
onExited?: () => void;
|
|
}
|
|
|
|
declare class CarouselItem extends React.Component<CarouselItemProps> {}
|
|
export default CarouselItem;
|