refactor(facade): use rxjs package
move to new RxJS distribution. BREAKING CHANGE: RxJS imports now are via `rxjs` instead of `@reactivex/rxjs` Individual operators can be imported `import 'rxjs/operators/map'`
This commit is contained in:

committed by
Jeremy Elbourn

parent
a16ac84840
commit
5514dc19d9
@ -29,7 +29,8 @@ import {
|
||||
Http,
|
||||
Jsonp
|
||||
} from 'angular2/http';
|
||||
import {Observable, Subject} from '@reactivex/rxjs/dist/cjs/Rx';
|
||||
import {Observable} from 'rxjs/Observable';
|
||||
import {Subject} from 'rxjs/Subject';
|
||||
|
||||
class SpyObserver extends SpyObject {
|
||||
onNext: Function;
|
||||
|
Reference in New Issue
Block a user