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/cache-distributions/cache-factory.d.ts
2022-01-31 17:25:55 +01:00

12 lines
362 B
TypeScript

import PipCache from './pip-cache';
import PipenvCache from './pipenv-cache';
export declare enum PackageManagers {
Pip = 'pip',
Pipenv = 'pipenv'
}
export declare function getCacheDistributor(
packageManager: string,
pythonVersion: string,
cacheDependencyPath: string | undefined
): PipCache | PipenvCache;
//# sourceMappingURL=cache-factory.d.ts.map