Add generated .d.ts and .d.ts.map files

This commit is contained in:
bexnoss 2022-01-31 17:25:55 +01:00
parent 6ae21f0d45
commit 1173a1039c
44 changed files with 416 additions and 0 deletions

View file

@ -0,0 +1,12 @@
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