We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello again.
This syntax is not supported by decco, nor by spice:
type things = Boo({ a: string }) | Bar({ x: bool }); let x = Boo({a: "Bo"})
So I have to write it like this:
type boo = { a: string }; type bar = { x: bool }; type things = Boo(boo) | Bar(bar); let x = Boo({a: "Bo"})
Will it be possible to be added so I don't have to write that many extra types ? Thanks!
The text was updated successfully, but these errors were encountered:
Hi!
Yes this use case seems not supported. But, the custom codecs that are cutome encoder and decoder can solve the most complicated case.
Sorry, something went wrong.
No branches or pull requests
Hello again.
This syntax is not supported by decco, nor by spice:
So I have to write it like this:
Will it be possible to be added so I don't have to write that many extra types ?
Thanks!
The text was updated successfully, but these errors were encountered: