mirror of
https://gitea.com/actions/setup-java.git
synced 2025-07-06 13:44:55 +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;
|
||
|
}
|