videogular2
Version:
Videogular is a video application framework for desktop and mobile powered by Angular 2.0
20 lines (19 loc) • 622 B
TypeScript
import { ElementRef, SimpleChanges, OnChanges, OnDestroy, OnInit } from "@angular/core";
import { VgAPI } from '../../core/services/vg-api';
import { Subscription } from 'rxjs/Subscription';
export declare class VgDASH implements OnInit, OnChanges, OnDestroy {
private ref;
API: VgAPI;
vgDash: string;
vgFor: string;
target: any;
dash: any;
subscriptions: Subscription[];
constructor(ref: ElementRef, API: VgAPI);
ngOnInit(): void;
onPlayerReady(): void;
ngOnChanges(changes: SimpleChanges): void;
createPlayer(): void;
destroyPlayer(): void;
ngOnDestroy(): void;
}