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) • 327 B
TypeScript
import BaseReactPlayer, { BaseReactPlayerProps } from './base.js'
export interface SoundCloudConfig {
options?: Record<string, any>
}
export interface SoundCloudPlayerProps extends BaseReactPlayerProps {
config?: SoundCloudConfig
}
export default class SoundCloudPlayer extends BaseReactPlayer<SoundCloudPlayerProps> {}