opentok-network-test-js
Version:
Precall network test for applications using the OpenTok platform.
17 lines • 545 B
TypeScript
export type MediaRouting = 'Routed' | 'Relayed (TURN/TLS)' | 'Relayed (TURN/UDP)' | 'Relayed (STUN/TLS)' | 'Relayed (STUN/UDP)' | 'Unknown';
export interface RTCIceCandidateStats extends RTCStats {
address: string;
candidateType: string;
foundation: string;
ip: string;
isRemote: boolean;
networkType: string;
port: number;
priority: number;
protocol: string;
tcpType: string;
transportId: string;
usernameFragment: string;
mediaRouting?: MediaRouting;
}
//# sourceMappingURL=rtcStats.d.ts.map