import { ElementRef, OnInit, OnChanges } from '@angular/core'; import { EditorService } from '../../services/editor/editor.service'; import { PlayerService } from '../../services/player/player.service'; import { ConfigService } from '../../services/config/config.service'; export declare class ContentPlayerPageComponent implements OnInit, OnChanges { private editorService; private playerService; configService: ConfigService; contentIframe: ElementRef; contentMetadata: any; contentDetails: any; playerConfig: any; content: any; playerType: string; contentId: string; hierarchy: any; constructor(editorService: EditorService, playerService: PlayerService, configService: ConfigService); ngOnInit(): void; ngOnChanges(): void; getContentDetails(): void; setPlayerType(): void; loadDefaultPlayer(): void; /** * Adjust player height after load */ adjustPlayerHeight(): void; eventHandler(e: any): void; generateContentReadEvent(e: any, boo: any): void; }