This message was deleted.
# typescript
s
This message was deleted.
s
yeah you can do what's called "type assertion"
Copy code
const devopsVpcPublicSubnetIds = vpcStack.getOutput("devopsVpcPublicSubnetIds") as Output<Array<string>>
you can do something similar with the
devopsVpc
object
s
thanks! Was trying the prefix approach but didn't think to wrap everything in an <Output<Type>>
p 1