update electron to v43
This commit is contained in:
parent
68ac0beedf
commit
fb6c8b6ee9
5385 changed files with 513060 additions and 123058 deletions
18
electron/node_modules/app-builder-lib/out/targets/MsiTarget.d.ts
generated
vendored
18
electron/node_modules/app-builder-lib/out/targets/MsiTarget.d.ts
generated
vendored
|
|
@ -1,22 +1,28 @@
|
|||
import { Arch } from "builder-util";
|
||||
import { Lazy } from "lazy-val";
|
||||
import { MsiOptions } from "../";
|
||||
import { Target } from "../core";
|
||||
import { FinalCommonWindowsInstallerOptions } from "../options/CommonWindowsInstallerConfiguration";
|
||||
import { VmManager } from "../vm/vm";
|
||||
import { WinPackager } from "../winPackager";
|
||||
export default class MsiTarget extends Target {
|
||||
private readonly packager;
|
||||
protected readonly packager: WinPackager;
|
||||
readonly outDir: string;
|
||||
private readonly vm;
|
||||
protected readonly vm: VmManager;
|
||||
readonly options: MsiOptions;
|
||||
constructor(packager: WinPackager, outDir: string);
|
||||
constructor(packager: WinPackager, outDir: string, name?: string, isAsyncSupported?: boolean);
|
||||
protected projectTemplate: Lazy<(data: any) => string>;
|
||||
/**
|
||||
* A product-specific string that can be used in an [MSI Identifier](https://docs.microsoft.com/en-us/windows/win32/msi/identifier).
|
||||
*/
|
||||
private get productMsiIdPrefix();
|
||||
private get iconId();
|
||||
private get upgradeCode();
|
||||
protected get iconId(): string;
|
||||
protected get upgradeCode(): string;
|
||||
build(appOutDir: string, arch: Arch): Promise<void>;
|
||||
private light;
|
||||
private getAdditionalLightArgs;
|
||||
private getCommonWixArgs;
|
||||
private writeManifest;
|
||||
protected writeManifest(appOutDir: string, wixArch: Arch, commonOptions: FinalCommonWindowsInstallerOptions): Promise<string>;
|
||||
protected getBaseOptions(commonOptions: FinalCommonWindowsInstallerOptions): Promise<any>;
|
||||
private computeFileDeclaration;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue