Type Alias PartialNull<T>

PartialNull<T>: {
    [P in keyof T]: T[P] | null
}

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

Type Parameters

  • T