/** * Yields the intersection of the keys of two objects. */ // export type IntersectionObjectKeys = Pick, keyof A>[keyof A]; export type IntersectionObjectKeys = Extract;