UNPKG

react-player

Version:

A React component for playing a variety of URLs, including file paths, YouTube, Facebook, Twitch, SoundCloud, Streamable, Vimeo, Wistia and DailyMotion

13 lines (9 loc) 325 B
import BaseReactPlayer, { BaseReactPlayerProps } from './base.js' export interface VimeoConfig { playerOptions?: Record<string, any> title?: string } export interface VimeoPlayerProps extends BaseReactPlayerProps { config?: VimeoConfig } export default class VimeoPlayer extends BaseReactPlayer<VimeoPlayerProps> {}