package json_of_jsonm

  1. Overview
  2. Docs
type json = [
  1. | `Null
  2. | `Bool of bool
  3. | `Float of float
  4. | `String of string
  5. | `List of json list
  6. | `Assoc of (string * json) list
]
module type IO = sig ... end
module type Json_encoder_decoder = sig ... end
module Make (IO : IO) : Json_encoder_decoder with module IO := IO