type-safe-json-decoder
type-safe-json-decoder copied to clipboard
A strongly typed JSON decoder and validator inspired by Elm
Is this library supported anymore? Any chance some of the PRs or issues will be dealt with? For my use cases, it would be great to have better support for...
Hi! I am in the unfortunate situation of having objects with more than 14 fields, and the `object` function only supports up to that many (at least, in a type-safe...
Right now, the signature of `andThen` is ``` andThen(decoder, fn) ``` Changing the order of the parameters to ``` andThen(fn, decoder) ``` would adhere to the idea that you first...