mirror of https://github.com/pulumi/pulumi.git
294 B
294 B
Improvements
- [sdk/nodejs] - Type optional input properties as
Input<T | undefined> | undefined
instead ofInput<T> | undefined
. This allows users to passOutput<T | undefined>
for optional input properties. #6323