Simplify a type to make Intellisense show a friendly shape
type Complex = { a: string } & { b: number } & { c: boolean };type Simple = Simplify<Complex>; // { a: string; b: number; c: boolean } Copy
type Complex = { a: string } & { b: number } & { c: boolean };type Simple = Simplify<Complex>; // { a: string; b: number; c: boolean }
Simplify a type to make Intellisense show a friendly shape