Module Linol_lwt.TextDocumentSyncOptions

type t = {
  1. change : Linol_lsp__Types.TextDocumentSyncKind.t option;
  2. openClose : bool option;
  3. save : [ `Bool of bool | `SaveOptions of Linol_lsp__Types.SaveOptions.t ] option;
  4. willSave : bool option;
  5. willSaveWaitUntil : bool option;
}
val create : ?change:Linol_lsp__Types.TextDocumentSyncKind.t -> ?openClose:bool -> ?save:[ `Bool of bool | `SaveOptions of Linol_lsp__Types.SaveOptions.t ] -> ?willSave:bool -> ?willSaveWaitUntil: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