net.akehurst.kotlin.kt2ts
Owner:
D Akehurst
Generate Typescript declarations for Kotlin modules
https://github.com/dhakehurst/net.akehurst.kotlin.kt2ts
Sources: https://github.com/dhakehurst/net.akehurst.kotlin.kt2ts.git
Version 1.0.0
Created 26 November 2019.
Generate Typescript declarations for Kotlin modules
Add this plugin to your build using the plugins DSL:
plugins {
id("net.akehurst.kotlin.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("net.akehurst.kotlin.kt2ts:net.akehurst.kotlin.kt2ts.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("net.akehurst.kotlin.kt2ts") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.akehurst.kotlin.kt2ts:net.akehurst.kotlin.kt2ts.gradle.plugin:1.0.0") } } apply(plugin = "net.akehurst.kotlin.kt2ts")
- Applying plugins to all subprojects .