Module Linol_lwt.WorkspaceEditClientCapabilities

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 : Linol_lsp__Types.FailureHandlingKind.t option;
  4. normalizesLineEndings : bool option;
  5. resourceOperations : Linol_lsp__Types.ResourceOperationKind.t list option;
}
val create : ?changeAnnotationSupport:changeAnnotationSupport -> ?documentChanges:bool -> ?failureHandling:Linol_lsp__Types.FailureHandlingKind.t -> ?normalizesLineEndings:bool -> ?resourceOperations:Linol_lsp__Types.ResourceOperationKind.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