UNPKG

@nestified/correlation-id

Version:

A NestJS package for adding correlation IDs to requests for tracking and logging

6 lines (5 loc) 148 B
export interface ICorrelationIdService { set(id: string): void; get: () => string | undefined; run(id: string, cb: () => void): void; }