What is the current best practice to use a promise...
# typescript
p
What is the current best practice to use a promise (await) in a ComponentResource? Obviously an await in the constructor does not work
c
Wrap it in an output, then you can use the input/output model in pulumi
output(promise)
p
thx