infobip-rtc
Version:
Infobip RTC JavaScript SDK - Infobip WebRTC API Implementation
13 lines (12 loc) • 592 B
TypeScript
import { PhoneCallOptions } from "../options/PhoneCallOptions";
import { Endpoint } from "../../util/Endpoint";
import { DefaultCall } from "./DefaultCall";
import { PhoneCall } from "../PhoneCall";
import { InfobipRTC } from "../../InfobipRTC";
export declare class DefaultOutgoingPhoneCall extends DefaultCall implements PhoneCall {
constructor(infobipRtc: InfobipRTC, phoneCallOptions: PhoneCallOptions, currentUserIdentity: string, phoneNumberDestination: string);
counterpart(): Endpoint;
options(): PhoneCallOptions;
private mapOptions;
private initEventHandlers;
}