Type Alias WithNullValues<T>

WithNullValues: { [K in keyof T]: T[K] | null }

Adds null as the possible type for the fields in the specified type.

Type Parameters