@jrosadob/nestjs-sophia-framework
Version:
Franework para microservicios en NestJS
9 lines (8 loc) • 391 B
TypeScript
import { NestInterceptor, ExecutionContext, CallHandler } from '@nestjs/common';
import { Observable } from 'rxjs';
import { ConfigService } from '../config';
export declare class LoggingInterceptor implements NestInterceptor {
private readonly configService;
constructor(configService: ConfigService);
intercept(context: ExecutionContext, next: CallHandler): Observable<any>;
}