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
In addition to deriving client functions that look like this
clientApi :: Dynamic t (Either Text Arg1) -> Dynamic t (Either Text Arg2) -> Event t () -> Event t (ReqResult Result)
we could derive clients that look like this
clientApi :: Event t (Arg1, Arg2) -> Event t (ReqResult Result)
The text was updated successfully, but these errors were encountered:
We may need to use some sort of inductive tuple type instead of native tuples.
Sorry, something went wrong.
+1
My rewrite may be an option. (Sorry for spamming the issue tracker)
No branches or pull requests
In addition to deriving client functions that look like this
we could derive clients that look like this
The text was updated successfully, but these errors were encountered: