renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
13 lines (12 loc) • 306 B
TypeScript
import type { Nullish } from '../../../types';
export interface AdoptiumJavaVersion {
semver: string;
}
export interface AdoptiumJavaResponse {
versions?: AdoptiumJavaVersion[];
}
export interface PackageConfig {
imageType: string;
architecture: Nullish<string>;
os: Nullish<string>;
}