import { CallHandler, ExecutionContext, NestInterceptor } from '@nestjs/common'; import { Counter, Histogram } from 'prom-client'; import { Observable } from 'rxjs'; import { LogService } from '../../modules'; export declare class GatewayMetricInterceptor implements NestInterceptor { private logService; private gatewayDurationMetric; private gatewayTotalMetric; constructor(logService: LogService, gatewayDurationMetric: Histogram, gatewayTotalMetric: Counter); intercept(context: ExecutionContext, next: CallHandler): Observable; } //# sourceMappingURL=gateway.interceptor.d.ts.map