package lsp

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

Module Types.CodeActionClientCapabilitiesSource

Sourcetype resolveSupport = {
  1. properties : string list;
}
Sourceval create_resolveSupport : properties:string list -> resolveSupport
Sourcetype codeActionKind = {
  1. valueSet : CodeActionKind.t list;
}
Sourceval create_codeActionKind : valueSet:CodeActionKind.t list -> codeActionKind
Sourcetype codeActionLiteralSupport = {
  1. codeActionKind : codeActionKind;
}
Sourceval create_codeActionLiteralSupport : codeActionKind:codeActionKind -> codeActionLiteralSupport
Sourcetype t = {
  1. codeActionLiteralSupport : codeActionLiteralSupport option;
  2. dataSupport : bool option;
  3. disabledSupport : bool option;
  4. dynamicRegistration : bool option;
  5. honorsChangeAnnotations : bool option;
  6. isPreferredSupport : bool option;
  7. resolveSupport : resolveSupport option;
}
Sourceval create : ?codeActionLiteralSupport:codeActionLiteralSupport -> ?dataSupport:bool -> ?disabledSupport:bool -> ?dynamicRegistration:bool -> ?honorsChangeAnnotations:bool -> ?isPreferredSupport:bool -> ?resolveSupport:resolveSupport -> 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
OCaml

Innovation. Community. Security.