pub type Value(a) { Null Int(Int) Custom(a) Bool(Bool) Float(Float) String(String) Array(List(Value(a))) Object(map.Map(String, Value(a))) }
Null
Int(Int)
Custom(a)
Bool(Bool)
Float(Float)
String(String)
Array(List(Value(a)))
Object(map.Map(String, Value(a)))
pub fn decode( json: String, custom_decoders: List( fn(Dynamic) -> Result(a, List(DecodeError)), ), ) -> Result(Value(a), gleam/json.DecodeError)