-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Closed
Closed
Copy link
Labels
BugA bug in TypeScriptA bug in TypeScriptDomain: Signature HelpInformation in editor tooltips when invoking a function callInformation in editor tooltips when invoking a function callEffort: ModerateRequires experience with the TypeScript codebase, but feasible. Harder than "Effort: Casual".Requires experience with the TypeScript codebase, but feasible. Harder than "Effort: Casual".Fix AvailableA PR has been opened for this issueA PR has been opened for this issueHelp WantedYou can do thisYou can do this
Milestone
Description
function foo(...args: [string, string] | [number, string, string]
) {
}
foo(/**/)
Expected
foo(args_0: string, args_1: string): void
foo(args_0: number, args_1: string, args_2: string): void
Actual
foo(args: string, args: string): void
foo(args: number, args: string, args: string): void
Metadata
Metadata
Assignees
Labels
BugA bug in TypeScriptA bug in TypeScriptDomain: Signature HelpInformation in editor tooltips when invoking a function callInformation in editor tooltips when invoking a function callEffort: ModerateRequires experience with the TypeScript codebase, but feasible. Harder than "Effort: Casual".Requires experience with the TypeScript codebase, but feasible. Harder than "Effort: Casual".Fix AvailableA PR has been opened for this issueA PR has been opened for this issueHelp WantedYou can do thisYou can do this