UNPKG

react-pro-video-player

Version:

A fully customizable and responsive React video player with fullscreen, captions, playback speed control, advertisement support, DRM solution and modern UI support — perfect for all your professional video needs.

9 lines (8 loc) 274 B
export interface UseVideoStreamReturn { videoUrl: string | null; loading: boolean; error: string | null; startStream: (videoId: number, quality?: string) => void; stopStream: () => void; } export declare const useVideoStream: () => UseVideoStreamReturn;