Type Alias PartialWithUndefined<T>

PartialWithUndefined: { [Prop in keyof T]?: T[Prop] }

Allow T to be partial or have undefined as the value for any of its keys.

Type Parameters