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

14 lines
272 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;
}
export interface IJetBrainsVersion {
tag_name: string;
semver: string;
build: number;
url: string;
}