mirror of
https://github.com/actions/setup-python.git
synced 2025-04-19 19:33:29 +00:00
14 lines
444 B
TypeScript
14 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
|