ngx-testing-tools
Version:
Makes Angular testing easier
8 lines (7 loc) • 327 B
TypeScript
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>;