package lsp

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

Module Types.SemanticTokensClientCapabilitiesSource

Sourcetype full = {
  1. delta : bool option;
}
Sourceval create_full : ?delta:bool -> unit -> full
Sourcetype requests = {
  1. range : bool option;
  2. full : [ `Bool of bool | `Full of full ] option;
}
Sourceval create_requests : ?range:bool -> ?full:[ `Bool of bool | `Full of full ] -> unit -> requests
Sourcetype t = {
  1. dynamicRegistration : bool option;
  2. requests : requests;
  3. tokenTypes : string list;
  4. tokenModifiers : string list;
  5. formats : TokenFormat.t list;
  6. overlappingTokenSupport : bool option;
  7. multilineTokenSupport : bool option;
}
Sourceval create : ?dynamicRegistration:bool -> requests:requests -> tokenTypes:string list -> tokenModifiers:string list -> formats:TokenFormat.t list -> ?overlappingTokenSupport:bool -> ?multilineTokenSupport:bool -> 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