Home > @xoram/core > UnionToIntersection
UnionToIntersection type
Signature:
typescript
export type UnionToIntersection<U> = (U extends any ? (x: U) => void : never) extends ((x: infer I) => void) ? I : never;
1