Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Isolated declarations quick fix explicitly prints out default type arguments #58449

Closed
DanielRosenwasser opened this issue May 6, 2024 · 0 comments · Fixed by #59665
Closed
Labels
Domain: Isolated Declarations Related to the --isolatedDeclarations compiler flag Experience Enhancement Noncontroversial enhancements Help Wanted You can do this Suggestion An idea for TypeScript
Milestone

Comments

@DanielRosenwasser
Copy link
Member

// @declaration: true
// @isolatedDeclarations: true

export interface Foo<T, U = T[]> {
}

export function /**/foo(x: Foo<string>) {
    return x;
}

Request a quick fix at /**/.

Current:

Add return type 'Foo<string, string[]>'.

Expected:

Add return type 'Foo<string>'.
@RyanCavanaugh RyanCavanaugh added Suggestion An idea for TypeScript Help Wanted You can do this Experience Enhancement Noncontroversial enhancements labels May 6, 2024
@RyanCavanaugh RyanCavanaugh added this to the Backlog milestone May 6, 2024
@weswigham weswigham added the Domain: Isolated Declarations Related to the --isolatedDeclarations compiler flag label May 14, 2024
blickly added a commit to blickly/TypeScript that referenced this issue Aug 17, 2024
blickly added a commit to blickly/TypeScript that referenced this issue Aug 17, 2024
This is the TypeNode representation of a ReferenceType that includes
the minimal number of typeArguments that are still semantically equivalent
to the full type.

Also use this functionality in the isolatedDeclaration autofixer to
fix microsoft#58449
blickly added a commit to blickly/TypeScript that referenced this issue Aug 17, 2024
This is the TypeNode representation of a ReferenceType that includes
the minimal number of typeArguments that are still semantically equivalent
to the full type.

Also use this functionality in the isolatedDeclaration autofixer to
fix microsoft#58449
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
Domain: Isolated Declarations Related to the --isolatedDeclarations compiler flag Experience Enhancement Noncontroversial enhancements Help Wanted You can do this Suggestion An idea for TypeScript
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants