Flatten array types for nicer hover results
type Arr = Array<{ a: number }>;type FlatArr = Flatten<Arr>;// { a: number }[] Copy
type Arr = Array<{ a: number }>;type FlatArr = Flatten<Arr>;// { a: number }[]
Flatten array types for nicer hover results