react-player
Version:
A React component for playing a variety of URLs, including file paths, YouTube, Facebook, Twitch, SoundCloud, Streamable, Vimeo, Wistia and DailyMotion
12 lines (8 loc) • 317 B
TypeScript
import BaseReactPlayer, { BaseReactPlayerProps } from './base.js'
export interface MixcloudConfig {
options?: Record<string, any>
}
export interface MixcloudPlayerProps extends BaseReactPlayerProps {
config?: MixcloudConfig
}
export default class MixcloudPlayer extends BaseReactPlayer<MixcloudPlayerProps> {}