fleeta-components
Version:
A comprehensive React component library for fleet management applications
12 lines • 712 B
TypeScript
/**
* VideoPlayer 이벤트 핸들러 함수들
* VideoPlayer 컴포넌트에서 사용하는 모든 이벤트 핸들러를 정의합니다.
*/
import React from 'react';
import type { VideoState, VideoControlHandlers } from './types';
/**
* VideoPlayer의 모든 이벤트 핸들러를 생성하는 함수
* 비디오 플레이어의 모든 상호작용을 처리합니다.
*/
export declare function createVideoControlHandlers(videoRef: React.RefObject<HTMLVideoElement>, containerRef: React.RefObject<HTMLDivElement>, videoState: VideoState, setVideoState: React.Dispatch<React.SetStateAction<VideoState>>, onError?: (error: string) => void): VideoControlHandlers;
//# sourceMappingURL=handlers.d.ts.map