Search Terms
Suggestion
import { foo } from 'bob';
foo();
I want to rename the named import but only within this module.
This is possible via "renamed named imports".
A refactoring could update the import along with any internal references:
import { foo as mySpecialFoo } from 'bob';
mySpecialFoo();
I'm happy to help implementing this if other people are interested and someone can guide me. 😄
Checklist
My suggestion meets these guidelines:
Search Terms
Suggestion
I want to rename the named import but only within this module.
This is possible via "renamed named imports".
A refactoring could update the import along with any internal references:
I'm happy to help implementing this if other people are interested and someone can guide me. 😄
Checklist
My suggestion meets these guidelines: