typescript-vscode-plugins
typescript-vscode-plugins copied to clipboard
Autocomplete in object mapping pattern
type Pet = 'cat' | 'dog'
const currentPet: Pet = 'cat'
const food = {
'|'
}[currentPet]
I use this pattern almost everyday and really want to see autocomplete at cursor postition, despite this code results in error in ts. I think this is possible to do.