Is there a way to go from an `Output<string[]&g...
# typescript
p
Is there a way to go from an
Output<string[]>
to
Input<string>[]
?
or alternatively from
Input<Input<string>[]>
to
Input<string>[]
?
c
p
thanks, I ended up doing it this way anyway.
I was wondering if it was possible because its not actually changing any level of indirection
just kind of re-organizing it