package mustache

  1. Overview
  2. Docs
type value = [
  1. | `Null
  2. | `Bool of bool
  3. | `Float of float
  4. | `String of string
  5. | `A of value list
  6. | `O of (string * value) list
]

Compatible with Ezjsonm

type t = [
  1. | `A of value list
  2. | `O of (string * value) list
]