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) 260 B
import { NestMiddleware } from '@nestjs/common'; import { Request, Response, NextFunction } from 'express'; declare class TraceMiddleware implements NestMiddleware { use(req: Request, _: Response, next: NextFunction): void; } export { TraceMiddleware };