1
0
Files
setup-java/src/distributions/jetbrains/models.ts
T

15 lines
295 B
TypeScript
Raw Normal View History

2024-12-12 16:21:52 -06:00
// Raw Model from https://api.github.com/repos/JetBrains/JetBrainsRuntime/releases
export interface IJetBrainsRawVersion {
tag_name: string;
name: string;
prerelease: boolean;
2024-12-12 16:21:52 -06:00
}
export interface IJetBrainsVersion {
tag_name: string;
semver: string;
build: string;
2024-12-12 16:21:52 -06:00
url: string;
}