update electron to v43
This commit is contained in:
parent
68ac0beedf
commit
fb6c8b6ee9
5385 changed files with 513060 additions and 123058 deletions
24
electron/node_modules/app-builder-lib/out/winPackager.d.ts
generated
vendored
24
electron/node_modules/app-builder-lib/out/winPackager.d.ts
generated
vendored
|
|
@ -1,7 +1,7 @@
|
|||
import { Arch } from "builder-util";
|
||||
import { FileTransformer } from "builder-util/out/fs";
|
||||
import { Arch, FileTransformer } from "builder-util";
|
||||
import { Nullish } from "builder-util-runtime";
|
||||
import { Lazy } from "lazy-val";
|
||||
import { CertificateFromStoreInfo, CertificateInfo, FileCodeSigningInfo } from "./codeSign/windowsCodeSign";
|
||||
import { SignManager } from "./codeSign/signManager";
|
||||
import { AfterPackContext } from "./configuration";
|
||||
import { Target } from "./core";
|
||||
import { RequestedExecutionLevel, WindowsConfiguration } from "./options/winOptions";
|
||||
|
|
@ -9,21 +9,21 @@ import { Packager } from "./packager";
|
|||
import { PlatformPackager } from "./platformPackager";
|
||||
import { VmManager } from "./vm/vm";
|
||||
export declare class WinPackager extends PlatformPackager<WindowsConfiguration> {
|
||||
readonly cscInfo: Lazy<FileCodeSigningInfo | CertificateFromStoreInfo | null>;
|
||||
private _iconPath;
|
||||
_iconPath: Lazy<string | null>;
|
||||
readonly vm: Lazy<VmManager>;
|
||||
readonly computedPublisherName: Lazy<string[] | null>;
|
||||
readonly lazyCertInfo: Lazy<CertificateInfo | null>;
|
||||
readonly signingManager: Lazy<SignManager>;
|
||||
private signingQueue;
|
||||
get isForceCodeSigningVerification(): boolean;
|
||||
constructor(info: Packager);
|
||||
get defaultTarget(): Array<string>;
|
||||
protected doGetCscPassword(): string | undefined | null;
|
||||
createTargets(targets: Array<string>, mapper: (name: string, factory: (outDir: string) => Target) => void): void;
|
||||
getIconPath(): Promise<string | null>;
|
||||
sign(file: string, logMessagePrefix?: string): Promise<void>;
|
||||
private doSign;
|
||||
doGetCscPassword(): string | Nullish;
|
||||
signIf(file: string): Promise<boolean>;
|
||||
private _sign;
|
||||
signAndEditResources(file: string, arch: Arch, outDir: string, internalName?: string | null, requestedExecutionLevel?: RequestedExecutionLevel | null): Promise<void>;
|
||||
private isSignDlls;
|
||||
private shouldSignFile;
|
||||
protected createTransformerForExtraFiles(packContext: AfterPackContext): FileTransformer | null;
|
||||
protected signApp(packContext: AfterPackContext, isAsar: boolean): Promise<any>;
|
||||
protected signApp(packContext: AfterPackContext, isAsar: boolean): Promise<boolean>;
|
||||
private walkSignableFiles;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue