Type Alias PartialWithUndefined<T>

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

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

Type Parameters