/** * Custom semi-mock implementation for the Proxy connection service. */ export default class CustomSignalingLayer extends SignalingLayer { /** * Creates new instance. */ constructor(); /** * A map that stores SSRCs of remote streams. * @type {Map} maps SSRC number to jid */ ssrcOwners: Map; /** * * @type {ChatRoom|null} */ chatRoom: any | null; /** * Sets the ChatRoom instance used. * @param {ChatRoom} room */ setChatRoom(room: any): void; } import SignalingLayer from "../../service/RTC/SignalingLayer";