The signature help provider interface defines the contract between extensions and the parameter hints-feature.

interface SignatureHelpProvider {
    signatureHelpRetriggerCharacters?: readonly string[];
    signatureHelpTriggerCharacters?: readonly string[];
    provideSignatureHelp(model, position, token, context): ProviderResult<SignatureHelpResult>;
}

Properties

signatureHelpRetriggerCharacters?: readonly string[]
signatureHelpTriggerCharacters?: readonly string[]

Methods