package lsp

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Types.WorkspaceEditClientCapabilitiesSource

Sourcetype changeAnnotationSupport = {
  1. groupsOnLabel : bool option;
}
Sourceval create_changeAnnotationSupport : ?groupsOnLabel:bool -> unit -> changeAnnotationSupport
Sourcetype t = {
  1. changeAnnotationSupport : changeAnnotationSupport option;
  2. documentChanges : bool option;
  3. failureHandling : FailureHandlingKind.t option;
  4. normalizesLineEndings : bool option;
  5. resourceOperations : ResourceOperationKind.t list option;
}
Sourceval 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
Sourceval t_of_yojson : Yojson.Safe.t -> t
Sourceval yojson_of_t : t -> Yojson.Safe.t