@kbss-cvut/s-forms
Version:
Semantic forms generator and processor
17 lines (16 loc) • 569 B
TypeScript
export default VideoViewer;
/**
* Viewer for displaying video with annotations.
*/
declare function VideoViewer({ type, src, autoplay, muted, controls, responsive, aspectRatio, annotations, showAnnotations, onFullScreen, }: {
type: any;
src: any;
autoplay?: boolean | undefined;
muted?: boolean | undefined;
controls?: boolean | undefined;
responsive?: boolean | undefined;
aspectRatio?: string | undefined;
annotations?: any[] | undefined;
showAnnotations: any;
onFullScreen: any;
}): import("react/jsx-runtime").JSX.Element;