Type Alias PartialWithNullable<T>

PartialWithNullable<T>: {
    [Prop in keyof T]?: T[Prop] | null
}

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

Type Parameters