Files
setup-java/src/distributions/base-models.ts
T
copilot-swe-agent[bot] 98c23c3cba Add force-download input
2026-07-28 02:09:59 +00:00

22 lines
428 B
TypeScript

export interface JavaInstallerOptions {
version: string;
architecture: string;
packageType: string;
checkLatest: boolean;
forceDownload?: boolean;
setDefault?: boolean;
verifySignature?: boolean;
verifySignaturePublicKey?: string;
}
export interface JavaInstallerResults {
version: string;
path: string;
}
export interface JavaDownloadRelease {
version: string;
url: string;
signatureUrl?: string;
}