videogular2
Version:
Videogular is a video application framework for desktop and mobile powered by Angular 2.0
26 lines (25 loc) • 829 B
TypeScript
/// <reference types="core-js" />
import { ElementRef, OnChanges, OnDestroy, OnInit, SimpleChange } from '@angular/core';
import { VgAPI } from '../../../core/services/vg-api';
import { Subscription } from 'rxjs/Subscription';
export declare class VgScrubBarCuePoints implements OnInit, OnChanges, OnDestroy {
API: VgAPI;
vgCuePoints: TextTrackCueList;
vgFor: string;
elem: HTMLElement;
target: any;
onLoadedMetadataCalled: boolean;
cuePoints: Array<any>;
subscriptions: Subscription[];
totalCues: number;
constructor(ref: ElementRef, API: VgAPI);
ngOnInit(): void;
onPlayerReady(): void;
onLoadedMetadata(): void;
updateCuePoints(): void;
ngOnChanges(changes: {
[propName: string]: SimpleChange;
}): void;
ngDoCheck(): void;
ngOnDestroy(): void;
}