mirror of
https://github.com/actions/setup-python.git
synced 2025-04-20 03:53:30 +00:00
13 lines
415 B
TypeScript
13 lines
415 B
TypeScript
![]() |
import CacheDistributor from './cache-distributor';
|
||
|
declare class PipCache extends CacheDistributor {
|
||
|
private pythonVersion;
|
||
|
constructor(pythonVersion: string, cacheDependencyPath?: string);
|
||
|
protected getCacheGlobalDirectories(): Promise<string[]>;
|
||
|
protected computeKeys(): Promise<{
|
||
|
primaryKey: string;
|
||
|
restoreKey: string[];
|
||
|
}>;
|
||
|
}
|
||
|
export default PipCache;
|
||
|
//# sourceMappingURL=pip-cache.d.ts.map
|