mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-05-07 21:00:21 +00:00
11 lines
470 B
TypeScript
11 lines
470 B
TypeScript
declare const usePlayer: (urlParams: UrlParams) => [
|
|
Player,
|
|
videoParamsChanged: (videoParams: { hash: string | null, size: number | null, filename: string | null }) => void,
|
|
timeChanged: (time: number, duration: number, device: string) => void,
|
|
seek: (time: number, duration: number, device: string) => void,
|
|
pausedChanged: (paused: boolean) => void, () => void, () => void,
|
|
ended: () => void,
|
|
nextVideo: () => void,
|
|
];
|
|
|
|
export = usePlayer;
|