pub type DecodeError { UnexpectedFormat(List(d.DecodeError)) }
UnexpectedFormat(List(d.DecodeError))
pub fn decode(from toml_string: String, using decoder: fn(Dynamic) -> Result(a, List(DecodeError))) -> Result(a, gloml.DecodeError)
Parse a toml file. This function returns DecodeError when there is an error. Note: timestamps are not supported.
DecodeError