package json-wheel

  1. Overview
  2. Docs
type json_type =
  1. | Object of (string * json_type) list
  2. | Array of json_type list
  3. | String of string
  4. | Int of int
  5. | Float of float
  6. | Bool of bool
  7. | Null
type t = json_type
exception Json_error of string
module Browse : sig ... end
module Build : sig ... end
val string_of_loc : (Lexing.position * Lexing.position) -> string
val json_error : string -> 'a