package lsp

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. children : t list option;
  2. deprecated : bool option;
  3. detail : string option;
  4. kind : SymbolKind.t;
  5. name : string;
  6. range : Range.t;
  7. selectionRange : Range.t;
  8. tags : SymbolTag.t list option;
}
val create : ?children:t list -> ?deprecated:bool -> ?detail:string -> kind:SymbolKind.t -> name:string -> range:Range.t -> selectionRange:Range.t -> ?tags:SymbolTag.t list -> unit -> t
include Ppx_yojson_conv_lib.Yojsonable.S with type t := t
val t_of_yojson : Yojson.Safe.t -> t
val yojson_of_t : t -> Yojson.Safe.t