Module Js_jsonSource

Sourcetype ('a, 'b) kind =
  1. | Leaf of 'b
  2. | Arr of 'a list
  3. | Obj of (string * 'a) list
Sourcetype ('a, 'b) zip =
  1. | LeafVal of 'b
  2. | KeyVal of string
  3. | LeafZip of 'a
  4. | ArrZip of 'b list * 'a list
  5. | ObjZip of (string * 'b) list * (string * 'a) list
Sourcemodule type Converter = sig ... end
Sourcemodule Make_Conv (C : Converter) : sig ... end
Sourcemodule Js_to_JSON : sig ... end
Sourcemodule JSON_to_Js : sig ... end