@@ -19,7 +19,6 @@ import {
1919 CallFeatureFactory ,
2020 CallFeature
2121} from '@azure/communication-calling' ;
22- /* @conditional -compile-remove(calling-1.4.3-beta.1) */
2322import { CollectionUpdatedEvent , RecordingInfo } from '@azure/communication-calling' ;
2423import { CommunicationTokenCredential } from '@azure/communication-common' ;
2524import { AccessToken } from '@azure/core-auth' ;
@@ -95,14 +94,12 @@ export class MockRecordingCallFeatureImpl implements RecordingCallFeature {
9594 public recordings ;
9695 public emitter = new EventEmitter ( ) ;
9796 on ( event : 'isRecordingActiveChanged' , listener : PropertyChangedEvent ) : void ;
98- /* @conditional -compile-remove(calling-1.4.3-beta.1) */
9997 on ( event : 'recordingsUpdated' , listener : CollectionUpdatedEvent < RecordingInfo > ) : void ;
10098 // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
10199 on ( event : any , listener : any ) : void {
102100 this . emitter . on ( event , listener ) ;
103101 }
104102 off ( event : 'isRecordingActiveChanged' , listener : PropertyChangedEvent ) : void ;
105- /* @conditional -compile-remove(calling-1.4.3-beta.1) */
106103 off ( event : 'recordingsUpdated' , listener : CollectionUpdatedEvent < RecordingInfo > ) : void ;
107104 // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
108105 off ( event : any , listener : any ) : void {
0 commit comments