UNPKG

@extscreen/es3-player

Version:

Vue-Next binding for ES native framework

9 lines (8 loc) 318 B
import { App } from "vue"; import { ESPlayerConfiguration } from "./ESPlayerConfiguration"; export interface ESPlayer { install(app: App): void; init(configuration: ESPlayerConfiguration): Promise<any>; getPlayerConfiguration(): ESPlayerConfiguration; } export declare function createESPlayer(): ESPlayer;