jtsgen icon indicating copy to clipboard operation
jtsgen copied to clipboard

I want generated typescript with comments

Open yujiaao opened this issue 1 year ago • 1 comments

Hi, Great work!

but, i need quite more, for example

public class MyClass{
 
/**
* secret field with comments
*/
String myfield;
}

==>


interface MyClass{
/**
* secret field with comments
*/
myfield: string;
}

yujiaao avatar Mar 06 '23 02:03 yujiaao

it seemed that only generate comment from setter, not the member's comment it-self

yujiaao avatar Mar 06 '23 15:03 yujiaao