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