UNPKG

common-core-pkg

Version:

Common package for all the utils

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