Module Linol_lwt.DocumentRangeFormattingParams

type t = {
  1. options : Linol_lsp__Types.FormattingOptions.t;
  2. range : Linol_lsp__Types.Range.t;
  3. textDocument : Linol_lsp__Types.TextDocumentIdentifier.t;
  4. workDoneToken : [ `Int of int | `String of string ] option;
}
val create : options:Linol_lsp__Types.FormattingOptions.t -> range:Linol_lsp__Types.Range.t -> textDocument:Linol_lsp__Types.TextDocumentIdentifier.t -> ?workDoneToken:[ `Int of int | `String of string ] -> unit -> t
include Linol_lsp.Import.Json.Jsonable.S with type t := t
val t_of_yojson : Yojson.Safe.t -> t
val yojson_of_t : t -> Yojson.Safe.t