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
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/allSettled
type PromiseSettlementResult<V, R> = ( | PromiseFulfilledResult<V> | PromiseRejectedResult<R> ); type PromiseFulfilledResult<V> = { status: 'fulfilled', value: V, }; type PromiseRejectedResult<R> = { status: 'rejected', reason: R, }
The return type of that API is a tagged object. In order to add bindings without runtime, the previous issue need to be resolved first.
The text was updated successfully, but these errors were encountered:
Add bindings to Promise.allSettled
Promise.allSettled
64b300b
Resolves rescript-lang#5923
2054cb7
Resolves rescript-lang#5923 Signed-Off-By: Hyeseong Kim <[email protected]>
e1663bd
Successfully merging a pull request may close this issue.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/allSettled
The return type of that API is a tagged object. In order to add bindings without runtime, the previous issue need to be resolved first.
The text was updated successfully, but these errors were encountered: