infobip-rtc
Version:
Infobip RTC JavaScript SDK - Infobip WebRTC API Implementation
14 lines • 363 B
JavaScript
import { AudioStats } from "./AudioStats";
export class CurrentMediaStats {
constructor() {
this.currentAudioStats = new AudioStats();
this.mos = 5.0;
}
toJSON() {
return {
currentAudioStats: this.currentAudioStats.toJSON(),
mos: this.mos
};
}
}
//# sourceMappingURL=CurrentMediaStats.js.map