Interface SignatureHelpParams

Parameters for a SignatureHelpRequest.

interface SignatureHelpParams {
    context?: SignatureHelpContext;
    position: Position;
    textDocument: TextDocumentIdentifier;
    workDoneToken?: ProgressToken;
}

Hierarchy (View Summary)

Properties

The signature help context. This is only available if the client specifies to send this using the client capability textDocument.signatureHelp.contextSupport === true

3.15.0

position: Position

The position inside the text document.

The text document.

workDoneToken?: ProgressToken

An optional token that a server can use to report work done progress.