sql-talk
Version:
SQL Talk - 自然言語をSQLに変換するMCPサーバー(安全性保護・SSHトンネル対応) / SQL Talk - MCP Server for Natural Language to SQL conversion with safety guards and SSH tunnel support
11 lines • 461 B
TypeScript
import winston from 'winston';
export declare const logger: winston.Logger;
export declare class PerformanceLogger {
private static timers;
static start(operation: string): void;
static end(operation: string, metadata?: Record<string, unknown>): number;
static measure<T>(operation: string, fn: () => T): T;
static measure<T>(operation: string, fn: () => Promise<T>): Promise<T>;
}
export default logger;
//# sourceMappingURL=logger.d.ts.map