Hi, I see that there's typed support for Promise o...
# javascript
e
Hi, I see that there's typed support for Promise objects but I was wondering if there's a way to async/await promises somehow... perhaps some way to combine with coroutines? Not sure.
couldn't find an example of how to wire everything together yet.
r
you can just convert
Promise
to
Deferred
with
asDeferred()
extension function
👍 1