436a9631fc
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
24 lines
729 B
TypeScript
24 lines
729 B
TypeScript
import { Arch } from "builder-util";
|
|
import { FileAssociation } from "../../options/FileAssociation";
|
|
import { IconInfo } from "../../platformPackager";
|
|
import { BlockMapDataHolder } from "builder-util-runtime";
|
|
interface Options {
|
|
productName: string;
|
|
productFilename: string;
|
|
executableName: string;
|
|
desktopEntry: string;
|
|
icons: IconInfo[];
|
|
license?: string | null;
|
|
fileAssociations: FileAssociation[];
|
|
compression?: "xz" | "lzo" | "zstd";
|
|
}
|
|
export interface AppImageBuilderOptions {
|
|
appDir: string;
|
|
stageDir: string;
|
|
arch: Arch;
|
|
output: string;
|
|
options: Options;
|
|
}
|
|
export declare function buildAppImage(opts: AppImageBuilderOptions): Promise<BlockMapDataHolder>;
|
|
export {};
|