Up

module OpamJson

: sig
#
type t = [
| `Null
| `Bool of bool
| `Float of float
| `String of string
| `A of t list
| `O of (string * t) list
]
#
val to_string : t -> string
#
val add : t -> unit
#
val output : unit -> unit
#
val set_output : (string -> unit) -> unit
#
val verbose : unit -> bool
end