UNPKG

np-express-winston-logger

Version:

A TypeScript logger for Express using Winston and Elasticsearch

8 lines (7 loc) 249 B
import { AsyncLocalStorage } from "node:async_hooks"; interface RequestContext { requestId: string; } export declare const asyncLocalStorage: AsyncLocalStorage<RequestContext>; export declare const injectRequestId: (log: any) => any; export {};