Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / components / organisms / MediaCarousel / handlers.d.ts
Size: Mime:
import { MediaCarouselProps, MediaCarouselStateType } from './typings';
declare const handleTouchStart: (event: TouchEvent) => void;
declare const handleTouchMove: (event: TouchEvent) => void;
declare const handleTouchEnd: (event: TouchEvent, state: MediaCarouselStateType, props: MediaCarouselProps) => void;
declare const handleDragStart: (event: MouseEvent) => void;
declare const handleDragEnd: (event: MouseEvent, state: MediaCarouselStateType, props: MediaCarouselProps) => void;
declare const performSwipe: (state: MediaCarouselStateType, props: MediaCarouselProps) => void;
export { handleTouchStart, handleTouchMove, handleTouchEnd, handleDragStart, handleDragEnd, performSwipe, };