UNPKG

videogular2

Version:

Videogular is a video application framework for desktop and mobile powered by Angular 2.0

18 lines (17 loc) 526 B
import { ElementRef, OnInit, OnDestroy } from '@angular/core'; import { VgAPI } from '../../core/services/vg-api'; import { Subscription } from 'rxjs/Subscription'; export declare class VgMute implements OnInit, OnDestroy { API: VgAPI; vgFor: string; elem: HTMLElement; target: any; currentVolume: number; subscriptions: Subscription[]; constructor(ref: ElementRef, API: VgAPI); ngOnInit(): void; onPlayerReady(): void; onClick(): void; getVolume(): any; ngOnDestroy(): void; }