react-player
Version:
A React component for playing a variety of URLs, including file paths, YouTube, Facebook, Twitch, SoundCloud, Streamable, Vimeo, Wistia and DailyMotion
14 lines (10 loc) • 352 B
TypeScript
import BaseReactPlayer, { BaseReactPlayerProps } from './base.js'
export interface WistiaConfig {
options?: Record<string, any>
playerId?: string
customControls?: any[]
}
export interface WistiaPlayerProps extends BaseReactPlayerProps {
config?: WistiaConfig
}
export default class WistiaPlayer extends BaseReactPlayer<WistiaPlayerProps> {}