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