Interface PrepareRenameParams

A parameter literal used in requests to pass a text document and a position inside that document.

interface PrepareRenameParams {
    position: Position;
    textDocument: TextDocumentIdentifier;
    workDoneToken?: ProgressToken;
}

Hierarchy (View Summary)

Properties

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.