'infer' type parameters declarations aren't printed in quick info. #21836
Labels
Bug
A bug in TypeScript
Domain: Quick Fixes
Editor-provided fixes, often called code actions.
Domain: Quick Info
e.g. hover text, tool-tips, and tooltips.
Effort: Difficult
Good luck.
Fixed
A PR has been merged for this issue
Milestone
Found by @weswigham
Request quick info on
Alias
.Expected:
type Alias<T> = T extends (infer U)[] ? U : never
Actual:
type Alias<T> = T extends U[] ? U : never
The text was updated successfully, but these errors were encountered: