fleeta-components
Version:
A comprehensive React component library for fleet management applications
24 lines • 790 B
TypeScript
/**
* VideoPlayer 컨트롤 컴포넌트
* 비디오 플레이어의 컨트롤 UI를 담당합니다.
*/
import type { VideoState, VideoControlHandlers } from './types';
/**
* VideoControls props interface
*/
interface VideoControlsProps {
videoState: VideoState;
handlers: VideoControlHandlers;
showControls: boolean;
hasVideo: boolean;
isLoading: boolean;
onDownload?: () => void;
showMap?: boolean;
}
/**
* VideoControls 컴포넌트
* 비디오 플레이어의 모든 컨트롤 UI를 렌더링합니다.
*/
export declare function VideoControls({ videoState, handlers, showControls, hasVideo, isLoading, onDownload, showMap }: VideoControlsProps): import("react/jsx-runtime").JSX.Element | null;
export {};
//# sourceMappingURL=VideoControls.d.ts.map