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

25
dist/cache-save/find-pypy.d.ts vendored Normal file
View file

@ -0,0 +1,25 @@
interface IPyPyVersionSpec {
pypyVersion: string;
pythonVersion: string;
}
export declare function findPyPyVersion(
versionSpec: string,
architecture: string
): Promise<{
resolvedPyPyVersion: string;
resolvedPythonVersion: string;
}>;
export declare function findPyPyToolCache(
pythonVersion: string,
pypyVersion: string,
architecture: string
): {
installDir: string | null;
resolvedPythonVersion: string;
resolvedPyPyVersion: string;
};
export declare function parsePyPyVersion(versionSpec: string): IPyPyVersionSpec;
export declare function findPyPyInstallDirForWindows(
pythonVersion: string
): string;
export {};