UNPKG

react-all-player

Version:

react-all-player is a simple, lightweight, accessible and customizable React media player that supports modern browsers.

10 lines (9 loc) 331 B
import * as React from 'react'; import { Source } from '../../types'; export interface VimeoPlayerProps { source: Source; autoPlay?: boolean; muted?: boolean; onReady?: () => void; } export declare const VimeoPlayer: React.ForwardRefExoticComponent<VimeoPlayerProps & React.RefAttributes<HTMLDivElement>>;