react-slideshow-image
Version:
An image slideshow with react
4 lines (3 loc) • 424 B
TypeScript
import React from 'react';
import { FadeProps, SlideshowRef } from './types';
export declare const Fade: React.ForwardRefExoticComponent<Pick<FadeProps, "children" | "duration" | "transitionDuration" | "defaultIndex" | "indicators" | "prevArrow" | "nextArrow" | "arrows" | "autoplay" | "infinite" | "pauseOnHover" | "canSwipe" | "easing" | "cssClass" | "onStartChange" | "onChange"> & React.RefAttributes<SlideshowRef>>;