vdi-ngify-http
Version:
vdi plugin for ngify-http
7 lines (6 loc) • 414 B
TypeScript
import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from "@ngify/http";
import { Observable } from "rxjs";
export declare const HTTP_INTERCEPTOR: import("@wendellhu/redi/esm/dependencyIdentifier").IdentifierDecorator<HttpInterceptor[]>;
export declare class NoopInterceptor implements HttpInterceptor {
intercept(request: HttpRequest<unknown>, next: HttpHandler): Observable<HttpEvent<unknown>>;
}