import { SetIntersection } from "../set"; /** * gets the intersection of the keys of `A` and `B` * * @since 0.0.2 */ export type KeyIntersection = SetIntersection; /** * gets the intersection of `A` and `B` * * @since 0.0.2 */ export type ObjectIntersection = { [K in KeyIntersection]: PickValues[K]; }; //# sourceMappingURL=intersection.d.ts.map