You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notice that the typings for y are incorrect: the parameter x should be of type Foo<string> which is an alias for Bar<any, string>, however it is incorrectly typed as Bar<string>. The first generic to Bar has gone missing.
The text was updated successfully, but these errors were encountered:
2@rc
Given:
If I compile this with
"declaration": true
", the generated declaration file looks like:Notice that the typings for
y
are incorrect: the parameterx
should be of typeFoo<string>
which is an alias forBar<any, string>
, however it is incorrectly typed asBar<string>
. The first generic toBar
has gone missing.The text was updated successfully, but these errors were encountered: