UNPKG

coffee-core

Version:

Coffee IT API core library

11 lines (10 loc) 495 B
import { CallHandler, ExecutionContext, NestInterceptor } from '@nestjs/common'; import { Observable } from 'rxjs'; import { LoggingInterceptorConfig } from '../domain/loginterceptorconfig.interface'; export declare class LoggingInterceptor implements NestInterceptor { private readonly logger; private readonly pathConfig; constructor(config?: LoggingInterceptorConfig); intercept(context: ExecutionContext, next: CallHandler): Observable<any>; private generateRequestId; }