UNPKG

react-player

Version:

A React component for playing a variety of URLs, including file paths, Mux, YouTube, Vimeo, and Wistia

9 lines (8 loc) 293 B
import React from 'react'; import type { PlayerEntry } from './players.js'; import type { ReactPlayerProps } from './types.js'; type Player = React.ForwardRefExoticComponent<ReactPlayerProps & { activePlayer: PlayerEntry['player']; }>; declare const Player: Player; export default Player;