@saran-ign/video-annotation-tool
Version:
[](https://www.npmjs.com/package/@saran-ign/video-annotation-tool) [](https://www.npmjs.co
14 lines (13 loc) • 398 B
TypeScript
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;