Module Linol_lwt.SignatureInformation

type t = {
  1. activeParameter : int option option;
  2. documentation : [ `String of string | `MarkupContent of Linol_lsp__Types.MarkupContent.t ] option;
  3. label : string;
  4. parameters : Linol_lsp__Types.ParameterInformation.t list option;
}
val create : ?activeParameter:int option -> ?documentation: [ `String of string | `MarkupContent of Linol_lsp__Types.MarkupContent.t ] -> label:string -> ?parameters:Linol_lsp__Types.ParameterInformation.t list -> 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