mirror of
https://github.com/actions/setup-python.git
synced 2025-04-26 00:02:13 +00:00
13 lines
444 B
TypeScript
13 lines
444 B
TypeScript
import CacheDistributor from './cache-distributor';
|
|
declare class PipenvCache extends CacheDistributor {
|
|
private pythonVersion;
|
|
protected patterns: string;
|
|
constructor(pythonVersion: string, patterns?: string);
|
|
protected getCacheGlobalDirectories(): Promise<string[]>;
|
|
protected computeKeys(): Promise<{
|
|
primaryKey: string;
|
|
restoreKey: undefined;
|
|
}>;
|
|
}
|
|
export default PipenvCache;
|
|
//# sourceMappingURL=pipenv-cache.d.ts.map
|