logs-interceptor
Version:
High-performance, production-ready log interceptor for Node.js applications with Loki integration. Built with Clean Architecture principles. Supports Node.js, Browser, and Node-RED.
10 lines • 458 B
TypeScript
import { ResolvedLogsInterceptorConfig } from '../../application';
import { ConsoleInterceptor } from '../../infrastructure/interceptors/ConsoleInterceptor';
import { ILogger } from '../../domain/interfaces/ILogger';
export declare class LogsInterceptorFactory {
static create(config: ResolvedLogsInterceptorConfig): {
logger: ILogger;
consoleInterceptor?: ConsoleInterceptor;
};
}
//# sourceMappingURL=LogsInterceptorFactory.d.ts.map