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.
8 lines • 379 B
TypeScript
import { IHttpClient, HttpClientOptions } from './IHttpClient';
export declare class AxiosHttpClient implements IHttpClient {
private readonly client;
constructor(baseURL?: string, defaultHeaders?: Record<string, string>);
post(url: string, data: unknown, options?: HttpClientOptions): Promise<void>;
private sleep;
}
//# sourceMappingURL=AxiosHttpClient.d.ts.map