robstoll
03/12/2018, 6:47 AMPromise<Promise<String>>
but using then
on such a promise gets the resolved value of the inner promise (String) rather than Promise<String>
. Currently I use Promise<Any> which sucks because I need to retype to String within the next then body. Any suggestions?