import { PeerInfo } from '../connection/PeerInfo'; export interface IWebRtcSimulator { webRtcConnect(fromInfo: PeerInfo, toId: string): Promise; webRtcDisconnect(fromInfo: PeerInfo, toId: string): Promise; webRtcSend(fromInfo: PeerInfo, toId: string, message: string): Promise; }