UNPKG

nestjs-logitron

Version:

Powerful logger module for Nodejs/ Nestjs, seamlessly integrating Pino and Winston for flexible logging with easy configuration.

9 lines (6 loc) 241 B
import { AsyncLocalStorage } from 'async_hooks'; declare const asyncLocalStorage: AsyncLocalStorage<{ traceId: string; }>; declare function withTraceId(traceId: string, fn: () => void): void; export { asyncLocalStorage, withTraceId };