UNPKG

@sawport/peers-caller

Version:

WebRTC multi-peer video call library with mesh architecture supporting up to 4 participants

21 lines 610 B
import React from "react"; interface TesterMetrics { connectionCount: number; activeStreams: number; recordingSize: number; transcriptCount: number; bandwidthUsage: number; signalStrength: "strong" | "medium" | "weak" | "disconnected"; connectTime?: number; lastPingTime?: number; } interface ConnectionStatusProps { isConnected: boolean; isRecording: boolean; error: string | null; metrics: TesterMetrics; className?: string; } export declare const ConnectionStatus: React.FC<ConnectionStatusProps>; export {}; //# sourceMappingURL=ConnectionStatus.d.ts.map