chore: migrate code to ESM (#73)

This commit is contained in:
Luca Casonato
2024-09-13 17:15:41 +02:00
committed by GitHub
parent f8480e68ca
commit f1ac2c87b8
905 changed files with 69790 additions and 56120 deletions

View File

@@ -1,16 +0,0 @@
export interface IToolReleaseFile {
filename: string;
platform: string;
platform_version?: string;
arch: string;
download_url: string;
}
export interface IToolRelease {
version: string;
stable: boolean;
release_url: string;
files: IToolReleaseFile[];
}
export declare function _findMatch(versionSpec: string, stable: boolean, candidates: IToolRelease[], archFilter: string): Promise<IToolRelease | undefined>;
export declare function _getOsVersion(): string;
export declare function _readLinuxVersionFile(): string;