UNPKG

686 BTypeScriptView Raw
1import { Arch } from "builder-util";
2import { PkgOptions } from "../options/pkgOptions";
3import { Identity } from "../codeSign/macCodeSign";
4import { Target } from "../core";
5import { MacPackager } from "../macPackager";
6export 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}
15export declare function prepareProductBuildArgs(identity: Identity | null, keychain: string | null | undefined): Array<string>;