package lsp

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

Module Types.WorkspaceEditSource

Sourcetype t = {
  1. changes : (DocumentUri.t * TextEdit.t list) list option;
  2. documentChanges : [ `TextDocumentEdit of TextDocumentEdit.t | `CreateFile of CreateFile.t | `RenameFile of RenameFile.t | `DeleteFile of DeleteFile.t ] list option;
}
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
Sourceval create : ?changes:(DocumentUri.t * TextEdit.t list) list -> ?documentChanges: [ `TextDocumentEdit of TextDocumentEdit.t | `CreateFile of CreateFile.t | `RenameFile of RenameFile.t | `DeleteFile of DeleteFile.t ] list -> unit -> t