Type Alias WithUndefinedValues<T>

WithUndefinedValues: { [K in keyof T]: T[K] | undefined }

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

Type Parameters