UNPKG

react-video-timestone

Version:

A React component library for video timestone functionality

9 lines 422 B
import { ISeekToProps, IUseVideoAnimationProps, Marker } from '../types'; export declare const useVideoAnimation: ({ videoRef, onEnded, speed, videoCount, playIndex, }: IUseVideoAnimationProps) => { play: () => void; pause: () => void; reverse: () => void; seekTo: ({ time, autoPlay }: ISeekToProps) => void; addMarkers: (markers: Marker[]) => void; }; //# sourceMappingURL=use-video-animation.d.ts.map