Module Types.TextDocumentEditSource

Sourcetype t = {
  1. edits : [ `TextEdit of TextEdit.t | `AnnotatedTextEdit of AnnotatedTextEdit.t ] list;
  2. textDocument : OptionalVersionedTextDocumentIdentifier.t;
}
Sourceval create : edits: [ `TextEdit of TextEdit.t | `AnnotatedTextEdit of AnnotatedTextEdit.t ] list -> textDocument:OptionalVersionedTextDocumentIdentifier.t -> t
include Linol_lsp.Import.Json.Jsonable.S with type t := t
Sourceval t_of_yojson : Yojson.Safe.t -> t
Sourceval yojson_of_t : t -> Yojson.Safe.t