mirror of
https://github.com/actions/setup-python.git
synced 2025-04-25 15:52:14 +00:00
12 lines
415 B
TypeScript
12 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
|