videogular2
Version:
Videogular is a video application framework for desktop and mobile powered by Angular 2.0
20 lines (19 loc) • 611 B
TypeScript
/// <reference types="core-js" />
import { ElementRef, OnInit, OnDestroy } from '@angular/core';
import { VgAPI } from '../../core/services/vg-api';
import { Subscription } from 'rxjs/Subscription';
export declare class VgPlaybackButton implements OnInit, OnDestroy {
API: VgAPI;
vgFor: string;
elem: HTMLElement;
target: any;
playbackValues: Array<string>;
playbackIndex: number;
subscriptions: Subscription[];
constructor(ref: ElementRef, API: VgAPI);
ngOnInit(): void;
onPlayerReady(): void;
onClick(): void;
getPlaybackRate(): any;
ngOnDestroy(): void;
}