package lsp

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type changeAnnotationSupport = {
  1. groupsOnLabel : bool option;
}
val create_changeAnnotationSupport : ?groupsOnLabel:bool -> unit -> changeAnnotationSupport
type t = {
  1. changeAnnotationSupport : changeAnnotationSupport option;
  2. documentChanges : bool option;
  3. failureHandling : FailureHandlingKind.t option;
  4. normalizesLineEndings : bool option;
  5. resourceOperations : ResourceOperationKind.t list option;
}
val create : ?changeAnnotationSupport:changeAnnotationSupport -> ?documentChanges:bool -> ?failureHandling:FailureHandlingKind.t -> ?normalizesLineEndings:bool -> ?resourceOperations:ResourceOperationKind.t list -> unit -> t
include Ppx_yojson_conv_lib.Yojsonable.S with type t := t
val t_of_yojson : Yojson.Safe.t -> t
val yojson_of_t : t -> Yojson.Safe.t