mirror of
https://gitea.com/actions/setup-java.git
synced 2025-05-12 02:36: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>;
|
||
|
}
|