Interface DocumentRangeFormattingParams

The parameters of a DocumentRangeFormattingRequest.

interface DocumentRangeFormattingParams {
    options: FormattingOptions;
    range: Range;
    textDocument: TextDocumentIdentifier;
    workDoneToken?: ProgressToken;
}

Hierarchy (View Summary)

Properties

The format options

range: Range

The range to format

The document to format.

workDoneToken?: ProgressToken

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