5
0
Fork 0
mirror of https://github.com/actions/setup-python.git synced 2025-12-27 12:08:17 +00:00
setup-python/dist/cache-save/install-python.d.ts
2022-01-31 17:25:55 +01:00

9 lines
326 B
TypeScript

import * as tc from '@actions/tool-cache';
export declare const MANIFEST_URL: string;
export declare function findReleaseFromManifest(
semanticVersionSpec: string,
architecture: string
): Promise<tc.IToolRelease | undefined>;
export declare function installCpythonFromRelease(
release: tc.IToolRelease
): Promise<void>;