We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TS Template added by @mjbvz
TypeScript Version: 3.9.3
Search Terms
Steps to Reproduce:
type Foo = string | number; type Bar = string | number; function someFunc(params: { foo: Foo, bar: Bar, }) { // } // then try to call the function `someFunc` someFunc(
Here I defined two type aliases, Foo and Bar. Both have the same parameters, string | number.
Foo
Bar
string | number
someFunc
bar
It's also happened in Signature help.
Does this issue occur when all extensions are disabled?: Yes
The text was updated successfully, but these errors were encountered:
Looks like duplicate of #36761
/assign mjbvz
Sorry, something went wrong.
Also related to #34778
The issue is that Foo and Bar are structurally equivalent from the type system's point of view
Yes, when we try to display the type
{ foo: Foo, bar: Bar, }
we are actually working with the type represented by
{ foo: string | number, bar: string | number, }
When we see string | number, we say "oh, yeah, I saw an alias for that once" and use the first we encountered: Foo.
For your information, when I tried to open the same file in IntelliJ IDEA, hover hint showed the type alias correctly.
No branches or pull requests
TS Template added by @mjbvz
TypeScript Version: 3.9.3
Search Terms
Steps to Reproduce:
Here I defined two type aliases,
Foo
andBar
.Both have the same parameters,
string | number
.someFunc
and show popupbar
isBar
, but actually it wasFoo
It's also happened in Signature help.
Does this issue occur when all extensions are disabled?: Yes
The text was updated successfully, but these errors were encountered: