Skip to content

Commit 03d16fc

Browse files
courtneypattisonkara
authored andcommitted
docs(aio): add missing imports to interceptor example (angular#21259)
PR Close angular#21259
1 parent dcc3eba commit 03d16fc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

aio/content/guide/http.md

+4
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,8 @@ has a single `intercept()` method. Here is a simple interceptor which does nothi
273273
import {Injectable} from '@angular/core';
274274
import {HttpEvent, HttpInterceptor, HttpHandler, HttpRequest} from '@angular/common/http';
275275

276+
import {Observable} from 'rxjs/Observable';
277+
276278
@Injectable()
277279
export class NoopInterceptor implements HttpInterceptor {
278280
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
@@ -297,6 +299,8 @@ Simply declaring the `NoopInterceptor` above doesn't cause your app to use it. Y
297299
import {NgModule} from '@angular/core';
298300
import {HTTP_INTERCEPTORS} from '@angular/common/http';
299301

302+
import {NoopInterceptor} from 'noop.interceptor.ts';
303+
300304
@NgModule({
301305
providers: [{
302306
provide: HTTP_INTERCEPTORS,

0 commit comments

Comments
 (0)