UNPKG

@cdf/cdf-ng-media

Version:

Angular module for displaying media assets (images, videos)

16 lines (15 loc) 556 B
import { AfterViewInit, OnInit } from '@angular/core'; import { CdfMediaModel } from '../../models/index'; import { ClientConfigService } from '../../services'; export declare class CdfVideoBackgroundComponent implements OnInit, AfterViewInit { private clientConfigService; videoJWPlayer: any; jwPlayerKey: string; videoPlayerId: string; youTubeUrl: string; mediaModel: CdfMediaModel; constructor(clientConfigService: ClientConfigService); ngOnInit(): void; ngAfterViewInit(): void; guid(): string; }