UNPKG

infobip-rtc

Version:

Infobip RTC JavaScript SDK - Infobip WebRTC API Implementation

14 lines (13 loc) 845 B
/// <reference types="node" /> import { InfobipGateway } from "../../gateway/InfobipGateway"; import { EventEmitter } from "events"; import { Logger } from "../../log/Logger"; import { Device } from "../../device/Device"; import { DefaultApplicationCall } from "./DefaultApplicationCall"; import { ApplicationCallOptions } from "../options/ApplicationCallOptions"; export declare class DefaultOutgoingApplicationCall extends DefaultApplicationCall { private static WEBRTC_CALLS_CONFIGURATION_ID; constructor(eventEmitter: EventEmitter, gateway: InfobipGateway, logger: Logger, rtcConfig: any, device: Device, callsConfigurationId: string, options: ApplicationCallOptions, currentUserIdentity: string, token: string, apiUrl: string); protected negotiateAudio(options?: ApplicationCallOptions): Promise<void>; private sendOffer; }