@kbss-cvut/s-forms
Version:
Semantic forms generator and processor
10 lines (9 loc) • 332 B
TypeScript
export function useVideoPlayer({ videoRef, options, onReady, onFullScreen, onTimeUpdate, showAnnotations, annotations, }: {
videoRef: any;
options: any;
onReady: any;
onFullScreen: any;
onTimeUpdate: any;
showAnnotations: any;
annotations?: any[] | undefined;
}): import("react").MutableRefObject<null>;