Type alias PartialWithUndefined<T>

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

Same as the built-in Partial type but also allows each property to be undefined. Compatible with PartialAndUndefined from @augment-vir/common.

Type Parameters

  • T extends object