Sourcetype _ kind = | String : string kind| Number : float kind| Object : t Js__.Js_dict.t kind| Array : t array kind| Boolean : bool kind| Null : Js__.Js_types.null_val kind
Sourcetype tagged_t = | JSONFalse| JSONTrue| JSONNull| JSONString of string| JSONNumber of float| JSONObject of t Js__.Js_dict.t| JSONArray of t array
Sourceval decodeString : 'a -> 'b Sourceval decodeNumber : 'a -> 'b Sourceval decodeObject : 'a -> 'b Sourceval decodeArray : 'a -> 'b Sourceval decodeNull : 'a -> 'b Sourceval stringifyAny : 'a -> 'b Sourceval stringArray : 'a -> 'b Sourceval numberArray : 'a -> 'b Sourceval booleanArray : 'a -> 'b Sourceval objectArray : 'a -> 'b Sourceval stringify : 'a -> 'b Sourceval stringifyWithSpace : 'a -> 'b Sourceval serializeExn : t -> string Sourceval deserializeUnsafe : string -> 'a