UNPKG

@multiversx/sdk-nestjs-http

Version:
9 lines (8 loc) 405 B
import { CallHandler, ExecutionContext, NestInterceptor } from "@nestjs/common"; import { HttpAdapterHost } from "@nestjs/core"; import { Observable } from "rxjs"; export declare class QueryCheckInterceptor implements NestInterceptor { private readonly httpAdapterHost; constructor(httpAdapterHost: HttpAdapterHost); intercept(context: ExecutionContext, next: CallHandler): Observable<any>; }