ngx-plyr
Version:
Angular 6+ bindings for [plyr video and audio player](https://github.com/sampotts/plyr). Supports everything that original library supports.
8 lines (7 loc) • 382 B
TypeScript
import * as Plyr from 'plyr';
import { PlyrDriver, PlyrDriverCreateParams, PlyrDriverDestroyParams, PlyrDriverUpdateSourceParams } from './plyr-driver';
export declare class DefaultPlyrDriver implements PlyrDriver {
create(params: PlyrDriverCreateParams): Plyr;
updateSource(params: PlyrDriverUpdateSourceParams): void;
destroy(params: PlyrDriverDestroyParams): void;
}