/** Makes selected props from a record non optional */ export type Ensure = Omit & { [EK in K]-?: NonNullable; }; /** Makes selected props from a record optional */ export type Optional = Pick, K> & Omit;