UNPKG

@kitstack/nest-powertools

Version:

A comprehensive collection of NestJS powertools, decorators, and utilities to supercharge your backend development

10 lines (9 loc) 429 B
import { type NestInterceptor, type ExecutionContext, type CallHandler } from '@nestjs/common'; import type { Observable } from 'rxjs'; import type { Reflector } from '@nestjs/core'; export declare class ResilientHttpInterceptor implements NestInterceptor { private reflector; private readonly logger; constructor(reflector: Reflector); intercept(context: ExecutionContext, next: CallHandler): Observable<any>; }