bug: import { ,ofSubject } from 'rxjs';
See original GitHub issueThanks for this awesome plugin.
Ran into this bug…
Using version 5.0.0
Input:
import { Subject, of } from 'rxjs';
Output:
import { ,ofSubject } from 'rxjs';
Issue Analytics
- State:
- Created 4 years ago
- Comments:13 (7 by maintainers)
Top Results From Across the Web
Error: rxjs/Subject"' has no exported member 'Subject' [closed]
It looks you use RxJS v6. In v6, the way you import resources has been made much more easy. Your import should be...
Read more >Error: rxjs/Subject"' has no exported member 'Subject' #2103
Describe the bug "aws-amplify-angular": "^2.0.13" has a bug in src/providers/auth.decorator.ts import { Subject } from 'rxjs/Subject'; should be
Read more >Subject - RxJS
What is a Subject? An RxJS Subject is a special type of Observable that allows values to be multicasted to many Observers. While...
Read more >RxJS - Working with Subjects - Tutorialspoint
To work with subject, we need to import Subject as shown below − import { Subject } from 'rxjs';. You can create a...
Read more >The RxJS library - Angular
RxJS (Reactive Extensions for JavaScript) is a library for reactive ... import { from, Observable } from 'rxjs'; // Create an Observable out...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Upgrade to @typescript-eslint/parser 2.18.0 and your problem should be gone!
This is due to a bug in @typescript-eslint/parser. PR to fix it here: https://github.com/typescript-eslint/typescript-eslint/pull/1487
Once that’s merged and released, you should be able to update @typescript-eslint/parser to fix the problem, and I’ll add a test for it and close this issue.