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

9
dist/setup/install-python.d.ts vendored Normal file
View file

@ -0,0 +1,9 @@
import * as tc from '@actions/tool-cache';
export declare const MANIFEST_URL: string;
export declare function findReleaseFromManifest(
semanticVersionSpec: string,
architecture: string
): Promise<tc.IToolRelease | undefined>;
export declare function installCpythonFromRelease(
release: tc.IToolRelease
): Promise<void>;