@sawport/peers-caller
Version:
WebRTC multi-peer video call library with mesh architecture supporting up to 4 participants
27 lines • 714 B
TypeScript
import React from "react";
interface LogEntry {
id: string;
timestamp: number;
level: "info" | "warn" | "error" | "debug";
message: string;
data?: any;
}
interface TesterMetrics {
connectionCount: number;
activeStreams: number;
recordingSize: number;
transcriptCount: number;
bandwidthUsage: number;
signalStrength: "strong" | "medium" | "weak" | "disconnected";
connectTime?: number;
lastPingTime?: number;
}
interface DebugConsoleProps {
logs: LogEntry[];
metrics: TesterMetrics;
onClearLogs: () => void;
className?: string;
}
export declare const DebugConsole: React.FC<DebugConsoleProps>;
export {};
//# sourceMappingURL=DebugConsole.d.ts.map