3
0
Fork 0
mirror of https://gitea.com/actions/setup-go.git synced 2024-11-26 11:39:31 +01:00
setup-go/node_modules/@actions/tool-cache/lib/manifest.d.ts
Thomas Boop 0caeaed6fd
Swap to Environment Files V1 Release (#77)
* Swap to Environment Files
2020-10-01 10:45:33 -04:00

16 lines
552 B
TypeScript

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;