Add versions-manifest.json for Microsoft Build of OpenJDK (#383)

This commit is contained in:
Dmitry Shibanov 2022-09-23 14:47:30 +02:00 committed by GitHub
parent 26eeac8c9e
commit a18c333f3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 99 additions and 160 deletions

View file

@ -1,12 +1,2 @@
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>;
}