UNPKG

react-streamify-play

Version:

react-streamify-play is a simple yet customizable video player for reactjs.

10 lines (9 loc) 296 B
import { Video } from "../utils/Video"; import { controlOptionsEnum } from "./VPlayer_props"; export interface videoControlProps { videoInstance: Video; controlOptions?: controlOptionsEnum[]; handleNext?: () => void; handlePrev?: () => void; handleTheaterMode?: () => void; }