Add support for Liberica JDK (#225)

This commit is contained in:
Даниил Разоренов
2021-11-29 12:15:06 +03:00
committed by GitHub
parent ae26cabe43
commit d61af71edf
10 changed files with 2788 additions and 1793 deletions

View File

@ -0,0 +1,20 @@
// Models from https://api.bell-sw.com/api.html
export type Bitness = '32' | '64';
export type ArchType = 'arm' | 'ppc' | 'sparc' | 'x86';
export type OsVersions = 'linux' | 'linux-musl' | 'macos' | 'solaris' | 'windows';
export interface ArchitectureOptions {
bitness: Bitness;
arch: ArchType;
}
export interface LibericaVersion {
downloadUrl: string;
version: string;
featureVersion: number;
interimVersion: number;
updateVersion: number;
buildVersion: number;
}