infobip-rtc
Version:
Infobip RTC JavaScript SDK - Infobip WebRTC API Implementation
10 lines (9 loc) • 485 B
TypeScript
import { WebrtcCallOptions } from "../options/WebrtcCallOptions";
import { Endpoint } from "../../util/Endpoint";
import { DefaultWebrtcCall } from "./DefaultWebrtcCall";
import { InfobipRTC } from "../../InfobipRTC";
export declare class DefaultOutgoingWebrtcCall extends DefaultWebrtcCall {
constructor(infobipRtc: InfobipRTC, webrtcCallOptions: WebrtcCallOptions, currentUserIdentity: string, counterpartIdentity: string);
counterpart(): Endpoint;
private mapOptions;
}