UNPKG

coffee-core

Version:

Coffee IT API core library

9 lines (8 loc) 361 B
import { CallHandler, ExecutionContext, NestInterceptor } from '@nestjs/common'; import { Observable } from 'rxjs'; export declare class LoggingInterceptor implements NestInterceptor { private readonly logger; private readonly excludedPaths; intercept(context: ExecutionContext, next: CallHandler): Observable<any>; private generateRequestId; }