Interface SignatureHelp
Expand description
interface SignatureHelp {
activeParameter: number;
activeSignature: number;
signatures: SignatureInformation[];
}Properties§
§§§
active Parameter: numberThe active parameter of the active signature.
active Signature: numberThe active signature.
signatures: SignatureInformation[]One or more signatures.
Signature help represents the signature of something callable. There can be multiple signatures but only one active and only one active parameter.