mirror of
https://gitea.com/actions/setup-java.git
synced 2025-11-08 02:46:26 +08:00
14 lines
272 B
TypeScript
14 lines
272 B
TypeScript
|
|
// Raw Model from https://api.github.com/repos/JetBrains/JetBrainsRuntime/releases
|
||
|
|
|
||
|
|
export interface IJetBrainsRawVersion {
|
||
|
|
tag_name: string;
|
||
|
|
name: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface IJetBrainsVersion {
|
||
|
|
tag_name: string;
|
||
|
|
semver: string;
|
||
|
|
build: number;
|
||
|
|
url: string;
|
||
|
|
}
|