mirror of
https://github.com/actions/setup-python.git
synced 2025-07-26 03:38:21 +02:00
Add generated .d.ts and .d.ts.map files
This commit is contained in:
parent
6ae21f0d45
commit
1173a1039c
44 changed files with 416 additions and 0 deletions
12
dist/cache-save/cache-distributions/cache-factory.d.ts
vendored
Normal file
12
dist/cache-save/cache-distributions/cache-factory.d.ts
vendored
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue