Module Linol_lwt.DocumentSymbol

type t = {
  1. children : t list option;
  2. deprecated : bool option;
  3. detail : string option;
  4. kind : Linol_lsp__Types.SymbolKind.t;
  5. name : string;
  6. range : Linol_lsp__Types.Range.t;
  7. selectionRange : Linol_lsp__Types.Range.t;
  8. tags : Linol_lsp__Types.SymbolTag.t list option;
}
val create : ?children:t list -> ?deprecated:bool -> ?detail:string -> kind:Linol_lsp__Types.SymbolKind.t -> name:string -> range:Linol_lsp__Types.Range.t -> selectionRange:Linol_lsp__Types.Range.t -> ?tags:Linol_lsp__Types.SymbolTag.t list -> 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