videogular2
Version:
Videogular is a video application framework for desktop and mobile powered by Angular 2.0
17 lines (16 loc) • 503 B
TypeScript
import { ElementRef, OnInit, OnDestroy } from '@angular/core';
import { VgAPI } from '../../core/services/vg-api';
import { Subscription } from 'rxjs/Subscription';
export declare class VgPlayPause implements OnInit, OnDestroy {
API: VgAPI;
vgFor: string;
elem: HTMLElement;
target: any;
subscriptions: Subscription[];
constructor(ref: ElementRef, API: VgAPI);
ngOnInit(): void;
onPlayerReady(): void;
onClick(): void;
getState(): any;
ngOnDestroy(): void;
}