1 | export declare type ElectronPlatformName = "darwin" | "linux" | "win32" | "mas";
|
2 | export interface ElectronDownloadOptions {
|
3 | version?: string;
|
4 | |
5 |
|
6 |
|
7 | cache?: string | null;
|
8 | |
9 |
|
10 |
|
11 | mirror?: string | null;
|
12 |
|
13 | customDir?: string | null;
|
14 |
|
15 | customFilename?: string | null;
|
16 | quiet?: boolean;
|
17 | strictSSL?: boolean;
|
18 | isVerifyChecksum?: boolean;
|
19 |
|
20 | force?: boolean;
|
21 | platform?: ElectronPlatformName;
|
22 | arch?: string;
|
23 | }
|
24 | export declare function downloadElectron(options: ElectronDownloadOptions): Promise<string>;
|