export type Defined = T extends undefined ? never : T; export type DefinedOrNullValued = { [P in keyof T]: Defined | null; };