react-all-player
Version:
react-all-player is a simple, lightweight, accessible and customizable React media player that supports modern browsers.
11 lines (10 loc) • 420 B
TypeScript
import './global.css';
import './reset.css';
import * as React from 'react';
import { ReactVidPlayerProps } from './contexts/VideoPropsContext';
declare const ReactVidPlayer: React.ForwardRefExoticComponent<ReactVidPlayerProps & React.RefAttributes<HTMLVideoElement>>;
export * from './components';
export * from './hooks';
export * from './hotkeys';
export * from './contexts';
export default ReactVidPlayer;