package vcaml

  1. Overview
  2. Docs
module type Connection = sig ... end
type event = {
  1. method_name : string;
  2. params : Msgpack.t list;
}
val sexp_of_event : event -> Ppx_sexp_conv_lib.Sexp.t
val event_of_sexp : Ppx_sexp_conv_lib.Sexp.t -> event
module type S = sig ... end
module Make (M : Connection) () : S with type conn = M.t