Module Linol_lwt.InlayHint

type t = {
  1. data : Linol_lsp.Import.Json.t option;
  2. kind : Linol_lsp__Types.InlayHintKind.t option;
  3. label : [ `String of string | `List of Linol_lsp__Types.InlayHintLabelPart.t list ];
  4. paddingLeft : bool option;
  5. paddingRight : bool option;
  6. position : Linol_lsp__Types.Position.t;
  7. textEdits : Linol_lsp__Types.TextEdit.t list option;
  8. tooltip : [ `String of string | `MarkupContent of Linol_lsp__Types.MarkupContent.t ] option;
}
val create : ?data:Linol_lsp.Import.Json.t -> ?kind:Linol_lsp__Types.InlayHintKind.t -> label: [ `String of string | `List of Linol_lsp__Types.InlayHintLabelPart.t list ] -> ?paddingLeft:bool -> ?paddingRight:bool -> position:Linol_lsp__Types.Position.t -> ?textEdits:Linol_lsp__Types.TextEdit.t list -> ?tooltip: [ `String of string | `MarkupContent of Linol_lsp__Types.MarkupContent.t ] -> 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