UNPKG

ngx-plyr

Version:

Angular 6+ bindings for [plyr video and audio player](https://github.com/sampotts/plyr). Supports everything that original library supports.

19 lines (18 loc) 525 B
import * as Plyr from 'plyr'; export interface PlyrDriverCreateParams { options: Plyr.Options; videoElement: HTMLVideoElement; } export interface PlyrDriverUpdateSourceParams { plyr: Plyr; source: Plyr.SourceInfo; videoElement: HTMLVideoElement; } export interface PlyrDriverDestroyParams { plyr: Plyr; } export interface PlyrDriver { create(params: PlyrDriverCreateParams): Plyr; updateSource(params: PlyrDriverUpdateSourceParams): void; destroy(params: PlyrDriverDestroyParams): void; }