UNPKG

videogular2

Version:

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

21 lines (20 loc) 720 B
/// <reference types="core-js" /> import { ElementRef, OnDestroy, OnInit } from '@angular/core'; import { VgAPI } from '../../core/services/vg-api'; import { VgFullscreenAPI } from '../../core/services/vg-fullscreen-api'; import { Subscription } from 'rxjs/Subscription'; export declare class VgFullscreen implements OnInit, OnDestroy { API: VgAPI; fsAPI: VgFullscreenAPI; elem: HTMLElement; vgFor: string; target: Object; isFullscreen: boolean; subscriptions: Subscription[]; constructor(ref: ElementRef, API: VgAPI, fsAPI: VgFullscreenAPI); ngOnInit(): void; onPlayerReady(): void; onChangeFullscreen(fsState: boolean): void; onClick(): void; ngOnDestroy(): void; }