UNPKG

react-jw-player-ts

Version:

A fork of react-jw-player rewritten in typescript

11 lines (10 loc) 358 B
/// <reference types="jwplayer" /> import ReactJWPlayer from '..'; import { PlayerOpts } from './get-player-opts'; declare type InitializeArgType = { component: ReactJWPlayer; player: jwplayer.JWPlayer; playerOpts: PlayerOpts; }; declare function initialize({ component, player, playerOpts }: InitializeArgType): void; export default initialize;