package merlin-extend

  1. Overview
  2. Docs
module Reader : sig ... end
type description = {
  1. name : string;
  2. version : string;
}
type capabilities = {
  1. reader : bool;
}
type request =
  1. | Start_communication
  2. | Reader_request of Reader.request
type response =
  1. | Notify of string
  2. | Debug of string
  3. | Exception of string * string
  4. | Reader_response of Reader.response