mirror of
https://github.com/actions/setup-python.git
synced 2025-04-29 01:32:13 +00:00
13 lines
362 B
TypeScript
13 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
|