Flatten array type for better IntelliSense display.
The type to flatten
Improves readability of array types in hover information. Useful when working with deeply nested arrays or tuple types.
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 type for better IntelliSense display.