From f9318d898d6c017652a84202ccaebb440397016c Mon Sep 17 00:00:00 2001 From: Martin Sikora Date: Tue, 3 Jul 2018 17:05:27 +0200 Subject: [PATCH] docs(migration): mention util interfaces in migration import paths (#3884) #3681 --- docs_app/content/guide/v6/migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs_app/content/guide/v6/migration.md b/docs_app/content/guide/v6/migration.md index e67a60f26a..6a36238a28 100644 --- a/docs_app/content/guide/v6/migration.md +++ b/docs_app/content/guide/v6/migration.md @@ -150,7 +150,7 @@ For JavaScript developers, the general rule is as follows: 1. **rxjs:** Creation methods, types, schedulers and utilities ```ts -import { Observable, Subject, asapScheduler, pipe, of, from, interval, merge, fromEvent } from 'rxjs'; +import { Observable, Subject, asapScheduler, pipe, of, from, interval, merge, fromEvent, SubscriptionLike, PartialObserver } from 'rxjs'; ``` 2. **rxjs/operators**: All pipeable operators: