We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b87445c commit 000cff9Copy full SHA for 000cff9
1 file changed
src/vs/editor/contrib/parameterHints/parameterHintsWidget.ts
@@ -209,7 +209,7 @@ export class ParameterHintsWidget extends Disposable implements IContentWidget {
209
210
this.renderDisposeables.clear();
211
212
- const activeParameter = signature.parameters[hints.activeParameter];
+ const activeParameter: modes.ParameterInformation | undefined = signature.parameters[hints.activeParameter];
213
214
if (activeParameter && activeParameter.documentation) {
215
const documentation = $('span.documentation');
0 commit comments