Union to Intersection hard #utils #infer

by Zheeeng @zheeeng

Take the Challenge    简体中文 日本語

Implement the advanced util type `UnionToIntersection` For example ```ts type I = UnionToIntersection<'foo' | 42 | true> // expected to be 'foo' & 42 & true ```
Back Share your Solutions Check out Solutions