react-stv-player
Version:
A highly customizable React video player built on Video.js, supporting custom buttons, themes, and advanced playback controls.
9 lines (8 loc) • 307 B
TypeScript
import { STVPlayerButtonProps } from '../types';
type ProgressBarType = {
handleSkipForward: () => void;
handleSkipBack: () => void;
button?: STVPlayerButtonProps;
};
export declare function ProgressBar({ button, ...props }: ProgressBarType): import("react/jsx-runtime").JSX.Element;
export {};