electrovir / augment-vir

Set of helper functions I frequently reuse.
https://electrovir.github.io/augment-vir/
Creative Commons Zero v1.0 Universal
1 stars 1 forks source link

support optional properties in PickDeep #6

Closed electrovir closed 7 months ago

electrovir commented 8 months ago
PickDeep<{prop: {prop2?: string | undefined, prop3: string}}, ['prop1', 'prop2']>

results in

{prop: {prop2: string | undefined}}

but should result in

{prop: {prop2?: string | undefined}}
electrovir commented 7 months ago

fixed in next release