
* add changes for check-latest * run prerelease script * resolving comments * fixing tests * fix spelling * improve core.info messages * run format * run prerelease * change version to fix test * resolve comment for check-latest * Update README.md * added hosted tool cache section * Apply suggestions from code review Co-authored-by: Maxim Lobanov <v-malob@microsoft.com> Co-authored-by: Konrad Pabjan <konradpabjan@github.com>
17 lines
286 B
TypeScript
17 lines
286 B
TypeScript
export interface JavaInstallerOptions {
|
|
version: string;
|
|
architecture: string;
|
|
packageType: string;
|
|
checkLatest: boolean;
|
|
}
|
|
|
|
export interface JavaInstallerResults {
|
|
version: string;
|
|
path: string;
|
|
}
|
|
|
|
export interface JavaDownloadRelease {
|
|
version: string;
|
|
url: string;
|
|
}
|