Open
Description
TypeScript Version: [email protected]
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