UNPKG

@hirebus/academy

Version:

React component library for academy and learning platforms

18 lines (17 loc) 511 B
interface VideoPlayerProps { videoUrl?: string; title: string; initialProgress?: number; courseId?: string; thumbnail?: string; onStopVideo?: ({ courseId, progress }: { courseId: string; progress: number; }) => void; className?: string; } export declare const VideoPlayer: { ({ videoUrl, title, initialProgress, courseId, thumbnail, onStopVideo, className, }: VideoPlayerProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export {};