runtime-eol
Version:
check runtime versions
28 lines (23 loc) • 448 B
TypeScript
type EolRecord = {
cycle: string,
releaseDate: string,
eol: string,
latest: string,
latestReleaseDate: string,
lts: boolean,
support: string,
};
type Tool = {
label: string,
sync: string,
min: EolRecord,
recommended: EolRecord,
};
type FailoverConfig = {
fileName: string,
remoteUrl: string,
tag: string,
tools: Tool[],
}
declare const failover: FailoverConfig;
export default failover;