java2typescript icon indicating copy to clipboard operation
java2typescript copied to clipboard

A Node.js tool to convert Java source code to Typescript

Results 6 java2typescript issues
Sort by recently updated
recently updated
newest added

Hello, in the documentation of "fromFile" the "source" should always be an absolute path (so as to allow the startsWith to work), however it seems that in our conditions glob.sync...

bug

Hello, I tried to convert a Java class that used generics, and when I ran java2typescript it replaced every `` with `` I've made a simple example: ```java public class...

bug

Java2Typescript crashes when it encounters a switch fall through with no code in it. When trying to convert the example code, Java2Typescript crashes with this error: ``` Converting 1 files......

bug

Hi Mr. Mike, I need your advice. I am migrating a project that uses GWT (com.google.gwt). that is actually will running in browser, so the code are a lot of...

supposed we have file: ```java package org.antlr.v4.tool; public class Native2 { double getLabeledNodeVoltage(String name) { Integer node = LabeledNodeElm.getByName(name); if (node == null || node == 0) return 0; //...

This package uses hardcoded forward slashes with plain string matching, mixed with `path.resolve` uses that will return backslashes on Windows, thus imports do not resolve correctly. It works correctly if...

bug