1 | export declare function withTempDirectoryIn<T>(parentDirectory: string | undefined, fn: (directory: string) => Promise<T>): Promise<T>;
|
2 | export declare function withTempDirectory<T>(fn: (directory: string) => Promise<T>): Promise<T>;
|
3 | export declare function normalizeVersion(version: string): string;
|
4 |
|
5 |
|
6 |
|
7 | export declare function uname(): string;
|
8 |
|
9 |
|
10 |
|
11 |
|
12 | export declare function getNodeArch(arch: string): string;
|
13 |
|
14 |
|
15 |
|
16 |
|
17 | export declare function getHostArch(): string;
|
18 | export declare function ensureIsTruthyString<T, K extends keyof T>(obj: T, key: K): void;
|
19 | export declare function isOfficialLinuxIA32Download(platform: string, arch: string, version: string, mirrorOptions?: object): boolean;
|
20 |
|
21 |
|
22 |
|
23 |
|
24 | export declare function getEnv(prefix?: string): (name: string) => string | undefined;
|
25 | export declare function setEnv(key: string, value: string | undefined): void;
|