soates / Auto-Import

vscode extension that will automatically finds, parses and provides code actions for all available imports. Only currently works with files in your folder and TypeScript.
MIT License
164 stars 62 forks source link

RxJs no import Suggestion #33

Open vovikdrg opened 7 years ago

vovikdrg commented 7 years ago

I am using version 1.2.2 and its not suggesting import for BehaviorSubject meanwhile it suggest for Subject. Both of them they are in the same "place"

import { Subject, BehaviorSubject } from 'rxjs';

So if i add to my code

var subject = new Subject();
var bs = new BehaviorSubject(2);

For first Subject i will have suggestion for BehaviorSubject i will not have import suggestion

soates commented 7 years ago

Thanks for the feedback - I have been away from this project for a few weeks now but I am back and looking at as many issues as I can.

Thanks for using it :)