UNPKG

cls-proxify

Version:

Logging on steroids with CLS and Proxy. Integrated with express, koa, fastify.

6 lines (5 loc) 284 B
import { FastifyPluginCallback, FastifyReply, FastifyRequest } from 'fastify'; export declare type CreateClsProxyFastify = (req: FastifyRequest, reply: FastifyReply) => any; export declare const clsProxifyFastifyPlugin: FastifyPluginCallback<{ proxify: CreateClsProxyFastify; }>;