export interface IVideoSource { src: string; type?: string; } export interface IVideoPlayerProps { /** * One or more video sources. */ sources: IVideoSource[]; [key: string]: any; }