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

Makes all properties of object type T nullable.

Type Parameters

  • T