is there somewhere a typescript example on what ty...
# general
g
is there somewhere a typescript example on what type signature to use as best practice for optional outputs? I.e. I have an output
url
that is only set und certain conditions. I.e. how about:
Copy code
public readonly url?: pulumi.Output<string>
?