import type { ComputeIntersection } from "hry-types/src/Object/ComputeIntersection"; type _Replace = ComputeIntersection<{ [k in DifferentKeys]: Target[k]; } & { [k in SameKey]: Source[k]; }>; export type Replace = _Replace, Extract>; export {};