typescript2java
typescript2java copied to clipboard
Number as return type is not working
Example:
totalSeconds(): number
generates:
public native Number totalSeconds();
which is failing with exception in runtime. The proper working version must be:
public native double totalSeconds();
So the point is that though this "hack"
(@DoNotAutobox Number totalSeconds)
is working for method's input parameters, it's wrong to use Number for returning value.