infobip-rtc
Version:
Infobip RTC JavaScript SDK - Infobip WebRTC API Implementation
26 lines • 566 B
JavaScript
export class Participant {
}
export var State;
(function (State) {
State["JOINING"] = "JOINING";
State["JOINED"] = "JOINED";
})(State || (State = {}));
export class Media {
constructor(audio, video) {
this.audio = audio;
this.video = video;
}
}
export class Audio {
constructor(muted = false, deaf = false) {
this.muted = muted;
this.deaf = deaf;
this.talking = false;
}
}
export class Video {
constructor(blind = false) {
this.blind = blind;
}
}
//# sourceMappingURL=Participant.js.map