export interface IIceCandidateErrorEvent {
    address: null | string;

    errorCode: number;

    errorText: string;

    port: null | number;

    type: 'icecandidateerror';

    url: string;
}
