1 | import { Arch } from "builder-util";
|
2 | import { PkgOptions } from "..";
|
3 | import { Identity } from "../codeSign";
|
4 | import { Target } from "../core";
|
5 | import MacPackager from "../macPackager";
|
6 | export declare class PkgTarget extends Target {
|
7 | private readonly packager;
|
8 | readonly outDir: string;
|
9 | readonly options: PkgOptions;
|
10 | constructor(packager: MacPackager, outDir: string);
|
11 | build(appPath: string, arch: Arch): Promise<any>;
|
12 | private customizeDistributionConfiguration;
|
13 | private buildComponentPackage;
|
14 | }
|
15 | export declare function prepareProductBuildArgs(identity: Identity | null, keychain: string | null | undefined): Array<string>;
|