From microsoft/vscode#83375
TypeScript Version: typescript@3.8.0-dev.20191026
Search Terms:
- suggest / completions
- intellisense
- generic
Repo
For the typescript:
function test<T extends "x" | "y">() {}
test<''>
- Trigger intellisense inside the quotes in
test<''>
Expected behavior:
Suggestions for x and y returned.
Actual behavior:
No suggestions returned
From microsoft/vscode#83375
TypeScript Version: typescript@3.8.0-dev.20191026
Search Terms:
Repo
For the typescript:
test<''>Expected behavior:
Suggestions for
xandyreturned.Actual behavior:
No suggestions returned