UNPKG

infobip-rtc

Version:

Infobip RTC JavaScript SDK - Infobip WebRTC API Implementation

11 lines (10 loc) 544 B
import { WebrtcCallOptions } from "../options/WebrtcCallOptions"; import { Endpoint } from "../../util/Endpoint"; import { DefaultWebrtcCall } from "./DefaultWebrtcCall"; import { InfobipRTC } from "../../InfobipRTC"; import { Logger } from "../../log/Logger"; export declare class DefaultOutgoingWebrtcCall extends DefaultWebrtcCall { constructor(infobipRtc: InfobipRTC, webrtcCallOptions: WebrtcCallOptions, currentUserIdentity: string, counterpartIdentity: string, logger: Logger); counterpart(): Endpoint; private mapOptions; }