/** * gets the set intersection of union types `A` and `B` * * @since 0.0.2 */ export type SetIntersection = A extends B ? A : B extends A ? B : never; //# sourceMappingURL=intersection.d.ts.map