A haxe type-annotation of Array<Array<String>> will generate Array[Array[String]] in GDScript, but GDScript won't support a nested type. It gives an error,
Nested typed collections are not supported.
If I change the haxe type to Array<Dynamic> the GDScript will have Array[Variant] and be okay. Is there a way in reflaxe to automatically get rid of the nested type in the generated annotation?