Revert "refactor: use isObservable provided by rxjs 6.1+ (#27668)"

This reverts commit 92c547830a.
This commit is contained in:
Miško Hevery
2019-11-27 13:00:59 -08:00
parent c5006e025f
commit 85b551a388
13 changed files with 50 additions and 22 deletions

View File

@ -6,8 +6,8 @@
* found in the LICENSE file at https://angular.io/license
*/
import {NgModuleFactory, ɵisPromise as isPromise} from '@angular/core';
import {Observable, from, isObservable, of } from 'rxjs';
import {NgModuleFactory, ɵisObservable as isObservable, ɵisPromise as isPromise} from '@angular/core';
import {Observable, from, of } from 'rxjs';
import {concatAll, last as lastValue, map} from 'rxjs/operators';
import {PRIMARY_OUTLET, Params} from '../shared';