UNPKG

ngx-testing-tools

Version:
8 lines (7 loc) 327 B
import { HttpInterceptor, HttpInterceptorFn } from '@angular/common/http'; import { InjectionToken, Type } from '@angular/core'; export interface InterceptorInfo { rootInterceptor: Type<HttpInterceptor> | HttpInterceptorFn; isRootCtor: boolean; } export declare const INTERCEPTOR_INFO: InjectionToken<InterceptorInfo>;