I've used JSWEET to transpile a large Java project. It has converted types like Enumeration<Object> directly to Enumeration<any> in TypeScript.
In the Java world it was possible to assign an array Object[] to an Enumeration<Object>.
In Typescript I get: Type 'any[]' is not assignable to type 'Enumeration<any>'
Is there a way to extend Enumeration<Object> OR any[] in such a way that TypeScript will allow this assignment to occur?
You can cast in two different ways:
But your
Enumeration
should probably extendArray
:Update
Maybe you can add a method
fromArray
to the enumeration class: