github.com/jfrog/frogbot@v1.1.1-0.20231221090046-821a26f50338/action/node_modules/@actions/tool-cache/lib/manifest.d.ts (about) 1 export interface IToolReleaseFile { 2 filename: string; 3 platform: string; 4 platform_version?: string; 5 arch: string; 6 download_url: string; 7 } 8 export interface IToolRelease { 9 version: string; 10 stable: boolean; 11 release_url: string; 12 files: IToolReleaseFile[]; 13 } 14 export declare function _findMatch(versionSpec: string, stable: boolean, candidates: IToolRelease[], archFilter: string): Promise<IToolRelease | undefined>; 15 export declare function _getOsVersion(): string; 16 export declare function _readLinuxVersionFile(): string;