Type Alias PartialNullish<T>

PartialNullish<T>: {
    [P in keyof T]?: Nullish<T[P]>
}

Constructs a type where all properties of T may be nullish.

Type Parameters

  • T