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 PipCache from './pip-cache';
import PipenvCache from './pipenv-cache';
export declare enum PackageManagers {
Pip = 'pip',
Pipenv = 'pipenv'
}
export declare function getCacheDistributor(
packageManager: string,
pythonVersion: string,
cacheDependencyPath: string | undefined
): PipCache | PipenvCache;
//# sourceMappingURL=cache-factory.d.ts.map