diff --git a/openvidu-components-angular/src/app/openvidu-webcomponent/openvidu-webcomponent.component.ts b/openvidu-components-angular/src/app/openvidu-webcomponent/openvidu-webcomponent.component.ts index d7c4a643..d77dab53 100644 --- a/openvidu-components-angular/src/app/openvidu-webcomponent/openvidu-webcomponent.component.ts +++ b/openvidu-components-angular/src/app/openvidu-webcomponent/openvidu-webcomponent.component.ts @@ -2,7 +2,6 @@ import { Component, ElementRef, EventEmitter, Input, OnInit, Output } from '@ang import { OpenViduService, ParticipantAbstractModel, RecordingInfo, TokenModel } from 'openvidu-angular'; import { Session } from 'openvidu-browser'; import { CaptionsLangOption } from '../../../projects/openvidu-angular/src/lib/models/caption.model'; -import { StreamingInfo } from '../../../projects/openvidu-angular/src/lib/models/streaming.model'; /** * @@ -142,12 +141,6 @@ export class OpenviduWebComponentComponent implements OnInit { */ _recordingActivityRecordingsList: RecordingInfo[] = []; - /** - * @internal - * TODO: Remove this directive when RTMP Exported was included on OV and streaming ready event was fired. - */ - _streamingActivityStreamingInfo: StreamingInfo; - /** * @internal */ @@ -544,19 +537,6 @@ export class OpenviduWebComponentComponent implements OnInit { this._activitiesPanelStreamingActivity = this.castToBoolean(value); } - /** - * The **streamingActivityStreamingInfo** attribute allows show to show the live streaming info in {@link StreamingActivityComponent}. - * - * Default: `undefined` - * - * @example - * - */ - @Input() set streamingActivityStreamingInfo(value: StreamingInfo) { - this._streamingActivityStreamingInfo = value; - } - - /** * The **streamingActivityStreamingError** attribute allows to show any possible error with the streaming in the {@link StreamingActivityComponent}. * @@ -565,7 +545,7 @@ export class OpenviduWebComponentComponent implements OnInit { * @example * */ - @Input() set streamingActivityStreamingError(value: any) { + @Input() set streamingActivityStreamingError(value: any) { this._streamingActivityStreamingError = value; }