setup-python/dist/setup/cache-distributions/pipenv-cache.d.ts
2022-01-31 17:25:55 +01:00

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