stuff
This commit is contained in:
17
buildfiles/node_modules/app-builder-lib/out/targets/fpm.d.ts
generated
vendored
Normal file
17
buildfiles/node_modules/app-builder-lib/out/targets/fpm.d.ts
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
import { Arch } from "builder-util";
|
||||
import { LinuxTargetSpecificOptions } from "..";
|
||||
import { Target } from "../core";
|
||||
import { LinuxPackager } from "../linuxPackager";
|
||||
import { LinuxTargetHelper } from "./LinuxTargetHelper";
|
||||
export default class FpmTarget extends Target {
|
||||
private readonly packager;
|
||||
private readonly helper;
|
||||
readonly outDir: string;
|
||||
readonly options: LinuxTargetSpecificOptions;
|
||||
private readonly scriptFiles;
|
||||
constructor(name: string, packager: LinuxPackager, helper: LinuxTargetHelper, outDir: string);
|
||||
private createScripts;
|
||||
checkOptions(): Promise<any>;
|
||||
private computeFpmMetaInfoOptions;
|
||||
build(appOutDir: string, arch: Arch): Promise<any>;
|
||||
}
|
Reference in New Issue
Block a user