@kitstack/nest-powertools
Version:
A comprehensive collection of NestJS powertools, decorators, and utilities to supercharge your backend development
8 lines (7 loc) • 355 B
TypeScript
import { Logger, type NestInterceptor, type ExecutionContext, type CallHandler } from '@nestjs/common';
import type { Observable } from 'rxjs';
export declare class LoggingInterceptor implements NestInterceptor {
private readonly logger;
constructor(logger: Logger);
intercept(context: ExecutionContext, next: CallHandler): Observable<any>;
}