* Identifies and handles a given HTTP request. * @param req The outgoing request object to handle. * @param next The next interceptor in the chain, or the backend * if no interceptors remain in the chain. * @returns An observable of the event stream.
(req: HttpRequest<any>, next: HttpHandler)
| 59 | * @returns An observable of the event stream. |
| 60 | */ |
| 61 | intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>; |
| 62 | } |
| 63 | |
| 64 | /** |
no outgoing calls
no test coverage detected