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