infobip-rtc
Version:
Infobip RTC JavaScript SDK - Infobip WebRTC API Implementation
10 lines (9 loc) • 341 B
TypeScript
import { IceCandidate } from "./IceCandidate";
export declare class CandidatePair {
readonly remote: IceCandidate;
readonly local: IceCandidate;
private currentRtt;
private state;
private requestsSent;
constructor(local: IceCandidate, remote: IceCandidate, currentRtt: number, state: string, requestsSent: number);
}