UNPKG

infobip-rtc

Version:

Infobip RTC JavaScript SDK - Infobip WebRTC API Implementation

22 lines (21 loc) 474 B
export declare class IceCandidate { private _protocol; private _ip; private _port; private _type; constructor(stats: any); get protocol(): string; set protocol(value: string); get ip(): string; set ip(value: string); get port(): number; set port(value: number); get type(): string; set type(value: string); toJSON(): { protocol: string; ip: string; port: number; type: string; }; }