react-language-selector-snipercruzz
Version:
A React component for selecting languages.
16 lines (13 loc) • 336 B
text/typescript
import React from 'react';
interface VideoSource {
src: string;
label?: string;
thumbnail?: string;
}
interface VideoPlayerProps {
sources: VideoSource[];
width?: number | string;
height?: number | string;
}
declare const VideoPlayer: React.FC<VideoPlayerProps>;
export { VideoPlayer, type VideoPlayerProps };