UNPKG

@saran-ign/video-annotation-tool

Version:

[![npm version](https://img.shields.io/npm/v/@saran-ign/video-annotation-tool.svg)](https://www.npmjs.com/package/@saran-ign/video-annotation-tool) [![npm downloads](https://img.shields.io/npm/dm/@saran-ign/video-annotation-tool.svg)](https://www.npmjs.co

14 lines (13 loc) 398 B
import React from "react"; interface PlayerProps { url: string; videoId?: string; videoControls?: React.VideoHTMLAttributes<HTMLVideoElement>; dimensions: { width: number; height: number; }; parentref?: React.RefObject<any>; } declare const Player: React.ForwardRefExoticComponent<PlayerProps & React.RefAttributes<HTMLVideoElement>>; export default Player;