Closed pdeffendol closed 5 years ago
The template for the DataService contains a line:
https://github.com/Centeva/TypeScripter/blob/master/TypeScripter.Common/Generators/DataServiceGenerator.cs#L161
return Observable.throw(errMsg);
For RxJS 6+, this should be changed to use throwError(errMsg)
throwError(errMsg)
To maintain compatibility maybe we need a configuration switch?
Fixed in latest version (2.0.41)
The template for the DataService contains a line:
https://github.com/Centeva/TypeScripter/blob/master/TypeScripter.Common/Generators/DataServiceGenerator.cs#L161
return Observable.throw(errMsg);
For RxJS 6+, this should be changed to use
throwError(errMsg)
To maintain compatibility maybe we need a configuration switch?