Open amatiasq opened 8 years ago
I know default exports aren't required to have a name but there is a common pattern where a default export also has a name:
export default class MyClass {}
Is there any way this plugin can support autocomplete when I try to use MyClass somewhere and automatically add import MyClass from './my-file';?
MyClass
import MyClass from './my-file';
Absolutely.. Great suggestion!
I know default exports aren't required to have a name but there is a common pattern where a default export also has a name:
Is there any way this plugin can support autocomplete when I try to use
MyClass
somewhere and automatically addimport MyClass from './my-file';
?