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;
|
2025-07-03 22:33:51 +05:30
|
|
|
prerelease: boolean;
|
2024-12-12 16:21:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface IJetBrainsVersion {
|
|
|
|
|
tag_name: string;
|
|
|
|
|
semver: string;
|
2025-07-03 22:33:51 +05:30
|
|
|
build: string;
|
2024-12-12 16:21:52 -06:00
|
|
|
url: string;
|
|
|
|
|
}
|