Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

sentry / @nestjs/common   js

Repository URL to install this package:

Version: 7.0.10 

/ cache / interceptors / cache.interceptor.d.ts

import { Observable } from 'rxjs';
import { CallHandler, ExecutionContext, HttpServer, NestInterceptor } from '../../interfaces';
export interface HttpAdapterHost<T extends HttpServer = any> {
    httpAdapter: T;
}
export declare class CacheInterceptor implements NestInterceptor {
    protected readonly cacheManager: any;
    protected readonly reflector: any;
    protected readonly httpAdapterHost: HttpAdapterHost;
    constructor(cacheManager: any, reflector: any);
    intercept(context: ExecutionContext, next: CallHandler): Promise<Observable<any>>;
    trackBy(context: ExecutionContext): string | undefined;
}