mirror of
https://github.com/actions/setup-java.git
synced 2025-04-03 02:26:36 +00:00
* Add ESLint config and update Prettier * Update test files * Rebuild action * Update docs * Update licenses * Update tsconfig * Rebuild action * Update tsconfig.json * Fix console.time calls * Rebuild action * Rebuild action on Linux
25 lines
497 B
TypeScript
25 lines
497 B
TypeScript
// 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;
|
|
}
|