Imagine you have a file called a.ts
that contains 4 named imports:
export const one = 1
export const two = 2
export const three = 3
export const four = 4
Next, you have a file named b.ts
and you want to import some variables from a.ts
.
import {} from './a.ts'
Wouldn't it be useful if Typescript or VS Code provided suggestions when you click inside the curly brackets? For example, a pop-up menu could appear listing all the possible imports that could be made from that file.