Warm tip: This article is reproduced from serverfault.com, please click

export 'partition' was not found in 'rxjs'

发布于 2019-08-19 06:08:47

I am trying to use ng-http-loader in my angular project. I have installed ng-http-loader package. While compilation of project i am getting an error. The error is

export 'partition' was not found in 'rxjs'.

package.json:

"dependencies": {
  "@angular/animations": "^8.2.2",
  "@angular/cdk": "^8.1.3",
  "@angular/common": "~8.0.0",
  "@angular/compiler": "~8.0.0",
  "@angular/core": "~8.0.0",
  "@angular/forms": "~8.0.0",
  "@angular/material": "^8.1.3",
  "@angular/platform-browser": "~8.0.0",
  "@angular/platform-browser-dynamic": "~8.0.0",
  "@angular/router": "~8.0.0",
  "hammerjs": "^2.0.8",
  "ng-http-loader": "^6.0.1",
  "rxjs": "^6.5.2",
  "tslib": "^1.9.0",
  "zone.js": "~0.9.1"
},
Questioner
Shahrukh
Viewed
0
darkie8 2019-11-26 16:57:17

go to ng-http-loader.js. And you could see the following

import { ReplaySubject,partition, merge, timer } from 'rxjs';
import { finalize, switchMap, debounce, distinctUntilChanged, tap} from 
'rxjs/operators';

You just have to change them to this :

import { ReplaySubject, merge, timer } from 'rxjs';
import { finalize, switchMap, debounce, distinctUntilChanged, tap, partition } 
from 'rxjs/operators';