package lsp

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

Module Types.SignatureHelpClientCapabilitiesSource

Sourcetype parameterInformation = {
  1. labelOffsetSupport : bool option;
}
Sourceval create_parameterInformation : ?labelOffsetSupport:bool -> unit -> parameterInformation
Sourcetype signatureInformation = {
  1. documentationFormat : MarkupKind.t list option;
  2. parameterInformation : parameterInformation option;
  3. activeParameterSupport : bool option;
  4. noActiveParameterSupport : bool option;
}
Sourceval create_signatureInformation : ?documentationFormat:MarkupKind.t list -> ?parameterInformation:parameterInformation -> ?activeParameterSupport:bool -> ?noActiveParameterSupport:bool -> unit -> signatureInformation
Sourcetype t = {
  1. contextSupport : bool option;
  2. dynamicRegistration : bool option;
  3. signatureInformation : signatureInformation option;
}
Sourceval create : ?contextSupport:bool -> ?dynamicRegistration:bool -> ?signatureInformation:signatureInformation -> 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.