Interface SignatureInformation
Expand description
interface SignatureInformation {
activeParameter?: number;
documentation?: string | IMarkdownString;
label: string;
parameters: ParameterInformation[];
}Properties§
§§§§
active Parameter?: numberIndex of the active parameter.
If provided, this is used in place of SignatureHelp.activeSignature.
documentation?: string | IMarkdownStringThe human-readable doc-comment of this signature. Will be shown in the UI but can be omitted.
label: stringThe label of this signature. Will be shown in the UI.
parameters: ParameterInformation[]The parameters of this signature.
Represents the signature of something callable. A signature can have a label, like a function-name, a doc-comment, and a set of parameters.