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
"5.8.2", "dts", "d.ts", "static", "generic"
https://www.typescriptlang.org/play/?ts=5.8.2#code/KYDwDg9gTgLgBAQwEYGcZQQY3pgNglFOAQQB4AVOAXkQDsBPAGjgFVq76A+OAbwCg4guGACuSXAEtMcNAhhS4UYAgAmEWrnpwA6lHUBzdhWZsaCBpwAUANwS4RwAFxxyASmdlyJ7lW78hAYrAMCJQtHC0Iri4iETm9AJCAL58SUA
export abstract class A<T = any, U = any> { public static readonly Fn = <T, U = any>(value: T): A<T, U> => { return null as any } }
Outputs d.ts(5.8.2):
export declare abstract class A<T = any, U = any> { static readonly Fn: <T, U = any>(value: T_1) => A<T_1, U_1>; }
Outputs d.ts(5.7.3):
export declare abstract class A<T = any, U = any> { static readonly Fn: <T_1, U_1 = any>(value: T_1) => A<T_1, U_1>; }
No response
The text was updated successfully, but these errors were encountered:
Bisects to #60234
Sorry, something went wrong.
@dragomirtitian @weswigham
weswigham
Successfully merging a pull request may close this issue.
π Search Terms
"5.8.2", "dts", "d.ts", "static", "generic"
π Version & Regression Information
β― Playground Link
https://www.typescriptlang.org/play/?ts=5.8.2#code/KYDwDg9gTgLgBAQwEYGcZQQY3pgNglFOAQQB4AVOAXkQDsBPAGjgFVq76A+OAbwCg4guGACuSXAEtMcNAhhS4UYAgAmEWrnpwA6lHUBzdhWZsaCBpwAUANwS4RwAFxxyASmdlyJ7lW78hAYrAMCJQtHC0Iri4iETm9AJCAL58SUA
π» Code
π Actual behavior
Outputs d.ts(5.8.2):
π Expected behavior
Outputs d.ts(5.7.3):
Additional information about the issue
No response
The text was updated successfully, but these errors were encountered: