You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my project i use the moduleDependencies feature to generate multiple generated files of Java types in the different frontend projects. In addition i use the extension cz.habarta.typescript.generator.ext.BeanPropertyPathExtension
There should be a way to generate only one Fields class in a parent file and use this for all others. So the content the plugin generates in my api-interface.ts in app should look like this:
// Added by 'BeanPropertyPathExtension' extension
class HelloWorldMessageFields extends common.Fields {
constructor(parent?: common.Fields, name?: string) { super(parent, name); }
message = new Fields(this, "message");
}
Is this already a feature i don't know of, or is this a feature request?
The text was updated successfully, but these errors were encountered:
In my project i use the moduleDependencies feature to generate multiple generated files of Java types in the different frontend projects. In addition i use the extension
cz.habarta.typescript.generator.ext.BeanPropertyPathExtension
Full configuration of the plugin:
The problem is, that every generated
api-interfaces.ts
file includes a decleration for theFields
class:There should be a way to generate only one Fields class in a parent file and use this for all others. So the content the plugin generates in my
api-interface.ts
inapp
should look like this:Is this already a feature i don't know of, or is this a feature request?
The text was updated successfully, but these errors were encountered: