Can Visual Studio consistently display Array<>
types in TypeScript by encapsulating the type in Array
rather than adding []
to the end? This would make long types much more readable and easier to follow, as it reads from left to right.
https://i.sstatic.net/lqjS7.png
const myType: Array<{ prop1: Array<string>, prop2: string }> = {};