mirror of
https://gitea.com/actions/setup-java.git
synced 2026-01-03 00:23:53 +08:00
13 lines
255 B
TypeScript
13 lines
255 B
TypeScript
|
|
type OsVersions = 'linux' | 'macos' | 'windows';
|
||
|
|
type ArchiveType = 'tar.gz' | 'zip';
|
||
|
|
|
||
|
|
export interface PlatformOptions {
|
||
|
|
archive: ArchiveType;
|
||
|
|
os: OsVersions;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface MicrosoftVersion {
|
||
|
|
downloadUrl?: string;
|
||
|
|
version: Array<number>;
|
||
|
|
}
|