1 | import { Arch } from "builder-util";
|
2 | import { SnapOptions } from "..";
|
3 | import { Target } from "../core";
|
4 | import { LinuxPackager } from "../linuxPackager";
|
5 | import { LinuxTargetHelper } from "./LinuxTargetHelper";
|
6 | export default class SnapTarget extends Target {
|
7 | private readonly packager;
|
8 | private readonly helper;
|
9 | readonly outDir: string;
|
10 | readonly options: SnapOptions;
|
11 | isUseTemplateApp: boolean;
|
12 | constructor(name: string, packager: LinuxPackager, helper: LinuxTargetHelper, outDir: string);
|
13 | private replaceDefault;
|
14 | private readonly isElectron2;
|
15 | private createDescriptor;
|
16 | build(appOutDir: string, arch: Arch): Promise<any>;
|
17 | }
|