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/setup/cache-distributions/pip-cache.d.ts
vendored
Normal file
12
dist/setup/cache-distributions/pip-cache.d.ts
vendored
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue