Search Gradle plugins

kotlin2ts.kt2ts

A Gradle Plugin which translates Kotlin data classes into Typescript. It uses Alicia Boya García's TypeScript definition generator for that.

https://github.com/alexvas/kotlin2typescript

Sources: https://github.com/alexvas/kotlin2typescript

Version 1.0.0 (latest)

Created 15 October 2018.

A Gradle Plugin which translates Kotlin data classes into Typescript. It uses Alicia Boya García's TypeScript definition generator for that.

Add this plugin to your build using the plugins DSL:

plugins {
  id("kotlin2ts.kt2ts") version "1.0.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("kotlin2ts.kt2ts:kotlin2ts.kt2ts.gradle.plugin:1.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("kotlin2ts.kt2ts")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("kotlin2ts.kt2ts:kotlin2ts.kt2ts.gradle.plugin:1.0.0")
      }
    }
    
    apply(plugin = "kotlin2ts.kt2ts")
  • Applying plugins to all subprojects .