typescript-generator icon indicating copy to clipboard operation
typescript-generator copied to clipboard

Generates TypeScript from Java - JSON declarations, REST service client

Results 154 typescript-generator issues
Sort by recently updated
recently updated
newest added

As a follow up of #1041: I create a default constructor for the output. In my inherited `children` I have in the Java code the following base defintion: ``` private...

If a class A inherits class B, the resulting typescript classes will both have each a fromData method. However, A, must have the keyword is missing the "override" keyword in...

Hello, some external dependency I use (and inherit from) uses the org.springframework.lang.Nullable annotation. When I add this to my list of nullable annotations like: ```kotlin val gen = TypeScriptGenerator(Settings().apply {...

Bumps [org.apache.maven.plugins:maven-checkstyle-plugin](https://github.com/apache/maven-checkstyle-plugin) from 3.3.0 to 3.3.1. Commits 88262c5 [maven-release-plugin] prepare release maven-checkstyle-plugin-3.3.1 47b8ec6 [MCHECKSTYLE-403] Goal checkstyle:checkstyle ignores testResources d12ab8f [MCHECKSTYLE-439] Upgrade to Parent 40 b4c97c4 fix typo in "ckecks" 2b0fc93...

dependencies
java

Bumps `graalvm.version` from 22.3.1 to 23.0.2. Updates `org.graalvm.js:js` from 22.3.1 to 23.0.2 Release notes Sourced from org.graalvm.js:js's releases. GraalJS 23.0.2 GraalVM provides an ECMAScript-compliant runtime to execute JavaScript and Node.js...

dependencies
java

Bumps `kotlin.version` from 1.9.10 to 1.9.20. Updates `org.jetbrains.kotlin:kotlin-bom` from 1.9.10 to 1.9.20 Release notes Sourced from org.jetbrains.kotlin:kotlin-bom's releases. Kotlin 1.9.20 1.9.20 Analysis. API New Features KT-58834 Analysis API: Add source...

dependencies
java

Bumps [jakarta.xml.bind:jakarta.xml.bind-api](https://github.com/eclipse-ee4j/jaxb-api) from 4.0.0 to 4.0.1. Commits 2ab55f8 Update API version of : to 4.0.1 b023399 #240 fixes parseBoolean according spec 10f8e1a merge updates feda7e3 Update the plugins used to...

dependencies
java

We are designing some custom extensions for our project, and one them relies on the [generic parameter default type feature](https://www.typescriptlang.org/docs/handbook/2/generics.html#generic-parameter-defaults) of Typescript. For example: ```ts interface Test {} ``` The...

I have a controller that inherits form a generic interface: ```java public interface GenericInterface { void doSomething(T thing); } ``` The controller itself is using a concrete implemenations of the...

Hi there, First of all, I'd like to thank you for the amazing work behind this tool! It's a fantastic tool that saves us a lot of time, while ensuring...