import { ElementRef, OnInit, OnDestroy, PipeTransform } from '@angular/core'; import { Subscription } from 'rxjs'; import { VgApiService } from '@49ing/ngx-videogular/core'; import * as i0 from "@angular/core"; export declare class VgUtcPipe implements PipeTransform { transform(value: number, format: string): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵpipe: i0.ɵɵPipeDeclaration; } export declare class VgTimeDisplayComponent implements OnInit, OnDestroy { API: VgApiService; vgFor: string; vgProperty: string; vgFormat: string; /** * We want to ignore live in WebRTC/HLS when we want to display current time */ ignoreLive: boolean; isWebRTC: boolean; isHLS: boolean; duration: number; elem: HTMLElement; target: any; subscriptions: Subscription[]; constructor(ref: ElementRef, API: VgApiService); ngOnInit(): void; onPlayerReady(): void; /** * In case of WebRTC add duration - how much video is streaming already) * */ getTime(): number; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }