react-elastic-carousel
react-elastic-carousel copied to clipboard
Wrong type for onChange of ReactElasticCarouselProps
Describe the bug Typescrypt error
export type ItemObject = {
// Children's props
object: any;
index: number;
};
export interface ReactElasticCarouselProps {
...
onChange?: (currentItemObject: ItemObject, currentPageIndex: number) => void;
...
}
But actually currentItemObject contains: { item, index}