worried-engineer-33884
12/20/2019, 5:30 PMtypeof myStringOutput === "object"
is there a way to test for pulumi.Output<string> in a guard or something?white-balloon-205
12/20/2019, 6:35 PMOutput<string>
as the actual runtime value involved is just an Output (and the value it will eventually provide can’t be type tested until it’s available, i.e. inside an apply).worried-engineer-33884
12/20/2019, 6:41 PM