mirror of
https://github.com/actions/setup-java.git
synced 2025-04-13 00:56:45 +08:00
15 lines
316 B
TypeScript
15 lines
316 B
TypeScript
export type OsVersions = 'linux' | 'macos' | 'windows';
|
|
|
|
export interface GraalVMEAFile {
|
|
filename: string;
|
|
arch: 'aarch64' | 'x64';
|
|
platform: 'darwin' | 'linux' | 'windows';
|
|
}
|
|
|
|
export interface GraalVMEAVersion {
|
|
version: string;
|
|
latest?: boolean;
|
|
download_base_url: string;
|
|
files: GraalVMEAFile[];
|
|
}
|