Closed
Description
Search Terms
Suggestion
far not always when calling a function you have all arguments ready, sometimes during quick and dirty bootstrap i just need to provide a list of whatever arguments that a function needs, and then work towards making sense of these arguments, for such cases it would be helpful if typescript auto-suggest the names of yet to be defined arguments based off the names of the parameters
Examples
declare function foo(one: number, another: string): boolean;
foo(
// ^ carret is here, `one` is expected as an auto-suggestion