Module Linol_lwt.CodeActionParams

type t = {
  1. context : Linol_lsp__Types.CodeActionContext.t;
  2. partialResultToken : [ `Int of int | `String of string ] option;
  3. range : Linol_lsp__Types.Range.t;
  4. textDocument : Linol_lsp__Types.TextDocumentIdentifier.t;
  5. workDoneToken : [ `Int of int | `String of string ] option;
}
val create : context:Linol_lsp__Types.CodeActionContext.t -> ?partialResultToken:[ `Int of int | `String of string ] -> 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