mirror of
https://github.com/actions/setup-python.git
synced 2025-07-26 16:08:20 +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
13
dist/setup/cache-distributions/pipenv-cache.d.ts
vendored
Normal file
13
dist/setup/cache-distributions/pipenv-cache.d.ts
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue