Skip to content

Instantly share code, notes, and snippets.

@VicAv99
Created March 29, 2019 15:14
Show Gist options
  • Save VicAv99/4eb5ff5fa24a51272d9061a1dde29b63 to your computer and use it in GitHub Desktop.
Save VicAv99/4eb5ff5fa24a51272d9061a1dde29b63 to your computer and use it in GitHub Desktop.
export interface HttpInterceptor {
/**
* * **req**: The outgoing request to handle
* * **next**: The next interceptor in the chain, or the backend if no interceptors in the chain.
*
*/
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment