Module Linol_lwt.SemanticTokensRegistrationOptions

type full = {
  1. delta : bool option;
}
val create_full : ?delta:bool -> unit -> full
type t = {
  1. documentSelector : [ `TextDocumentFilter of Linol_lsp__Types.TextDocumentFilter.t | `NotebookCellTextDocumentFilter of Linol_lsp__Types.NotebookCellTextDocumentFilter.t ] list option;
  2. full : [ `Bool of bool | `Full of full ] option;
  3. id : string option;
  4. legend : Linol_lsp__Types.SemanticTokensLegend.t;
  5. range : bool option;
  6. workDoneProgress : bool option;
}
val create : ?documentSelector: [ `TextDocumentFilter of Linol_lsp__Types.TextDocumentFilter.t | `NotebookCellTextDocumentFilter of Linol_lsp__Types.NotebookCellTextDocumentFilter.t ] list -> ?full:[ `Bool of bool | `Full of full ] -> ?id:string -> legend:Linol_lsp__Types.SemanticTokensLegend.t -> ?range:bool -> ?workDoneProgress:bool -> 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