UNPKG

infobip-rtc

Version:

Infobip RTC JavaScript SDK - Infobip WebRTC API Implementation

20 lines 441 B
export class Participant { } export var State; (function (State) { State["JOINING"] = "JOINING"; State["JOINED"] = "JOINED"; })(State || (State = {})); export class Media { constructor(audio) { this.audio = audio; } } export class Audio { constructor(muted = false, deaf = false) { this.muted = muted; this.deaf = deaf; this.talking = false; } } //# sourceMappingURL=Participant.js.map