搜索 Gradle 插件

io.github.ynixt.another-typescript-generator

Another TypeScript Generator 是一个 Gradle 插件,它可以从 Kotlin/Java 类中生成 TypeScript 接口。每个类都生成一个新的文件以防止冲突。

https://github.com/ynixt/another-typescript-generator

来源: https://github.com/ynixt/another-typescript-generator

版本 1.0.2(最新版本)

1.0.2

创建时间 2024年8月7日。

Another TypeScript Generator 是一个 Gradle 插件,它可以从 Kotlin/Java 类中生成 TypeScript 接口。每个类都生成一个新的文件以防止冲突。

使用 plugins DSL

plugins {
  id("io.github.ynixt.another-typescript-generator") version "1.0.2"
}

使用 旧插件应用方式

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.ynixt:another-typescript-generator:1.0.2")
  }
}

apply(plugin = "io.github.ynixt.another-typescript-generator")

使用 plugins DSL

plugins {
  id "io.github.ynixt.another-typescript-generator" version "1.0.2"
}

使用 旧插件应用方式

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.ynixt:another-typescript-generator:1.0.2"
  }
}

apply plugin: "io.github.ynixt.another-typescript-generator"

了解如何将插件应用于子项目