can anyone tell me what has to be imported for throwError my lint check is failing
import { throwError } from 'rxjs';
Thank you for answering this one, @martinsik
import { throwError } from 'rxjs/internal/observable/throwError'; This worked for me.
import { throwError } from 'rxjs'; This was giving error continuously.
@hjjobs What RxJS version you have?
"rxjs": "^6.0.0",
"rxjs-compat": "6.0.0",
Most helpful comment
import { throwError } from 'rxjs/internal/observable/throwError'; This worked for me.
import { throwError } from 'rxjs'; This was giving error continuously.