This repository was archived by the owner on Dec 1, 2019. It is now read-only.
This repository was archived by the owner on Dec 1, 2019. It is now read-only.
Incorrect design type is built for Array<>, starts from 0.18.0 #162
Open
Description
I have a class where I defined a property such way:
private pickupPoints: Array<PickupPointView>;
ATL v0.17.0 produces this code:
ATL v0.18.0+ (up to v1) produces this code:
What's interesting, that if I define property such way:
private pickupPoints: PickupPointView[];
and build it with v0.18.0 then it will produce Array
design type as expected.
Why does it happen and what array notation should I use: Array<any>
or any[]
?