Appearance
Array
The shorthand for T[] is identical to Array<T>:
T[]
Array<T>
type Basket = Fruit[]; // Is the same as type Basket = Array<Fruit>;
See the array type in the TypeScript documentation