@web-interact-mcp/client
Version:
A production-ready TypeScript library that transforms web applications into MCP (Model Context Protocol) servers with robust two-way communication via SignalR
17 lines • 626 B
TypeScript
import { ILogger, LogLevel } from './types';
/**
* Production-ready console logger implementation
*/
export declare class ConsoleLogger implements ILogger {
private currentLevel;
constructor(level?: LogLevel);
trace(message: string, ...data: any[]): void;
debug(message: string, ...data: any[]): void;
info(message: string, ...data: any[]): void;
warn(message: string, ...data: any[]): void;
error(message: string, ...data: any[]): void;
fatal(message: string, ...data: any[]): void;
setLevel(level: LogLevel): void;
getLevel(): LogLevel;
}
//# sourceMappingURL=consoleLogger.d.ts.map