UNPKG

@globis/player

Version:

GLOBIS React Video Player.

12 lines (11 loc) 329 B
import React from 'react'; import { TrackProps } from 'react-player'; import { Arguments as UsePlayerArguments } from './usePlayer'; declare type Props = UsePlayerArguments & { label?: string; playerKey?: string; poster?: string; tracks?: TrackProps[]; }; export declare const Player: React.FC<Props>; export {};