Interface DocumentLinkParams

The parameters of a DocumentLinkRequest.

interface DocumentLinkParams {
    partialResultToken?: ProgressToken;
    textDocument: TextDocumentIdentifier;
    workDoneToken?: ProgressToken;
}

Hierarchy (View Summary)

Properties

partialResultToken?: ProgressToken

An optional token that a server can use to report partial results (e.g. streaming) to the client.

The document to provide document links for.

workDoneToken?: ProgressToken

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