Angular documentation speaks about a "throwError" class whose import statement looking like the following
import { Observable, throwError } from 'rxjs';
But my compiler is not able to find the class and is complaining with the following error message
ERROR in src/app/shared/services/myservice.service.ts(3,10): error TS2305: Module '"D:/workspace/dev/MyProject/node_modules/rxjs/Rx"' has no exported member 'throwError'.
Following are my environment details
Angular CLI: 1.6.8 Node: 8.11.1 OS: win32 x64 Angular: 5.2.8 ... animations, common, compiler, compiler-cli, core, forms ... http, language-service, platform-browser ... platform-browser-dynamic, platform-server, router @angular/cdk: 5.2.4 @angular/cli: 1.6.8 @angular/material: 5.2.4 @angular/service-worker: 1.0.0-beta.16 @angular-devkit/build-optimizer: 0.0.42 @angular-devkit/core: 0.4.5 @angular-devkit/schematics: 0.0.52 @ngtools/json-schema: 1.1.0 @ngtools/webpack: 1.9.8 @schematics/angular: 0.1.17 typescript: 2.4.2 webpack: 3.10.0
What am I missing?
Are you looking for the _throw
observable?
import {_throw} from 'rxjs/observable/throw';
You were looking at Angular 6 docs which includes rxjs
version 6 that contains throwError
function. For Angular 5 (includes rxjs
5) use _throw
I did this since I don't like using words that start with _
import { _throw as throwError } from 'rxjs/observable/throw';
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With