436a9631fc
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
10 lines
336 B
TypeScript
10 lines
336 B
TypeScript
import { Arch } from "builder-util";
|
|
export declare function getLinuxToolsPath(): Promise<string>;
|
|
export declare function getFpmPath(): Promise<string>;
|
|
export declare function getAppImageTools(targetArch: Arch): Promise<{
|
|
mksquashfs: string;
|
|
desktopFileValidate: string;
|
|
runtime: string;
|
|
runtimeLibraries: string;
|
|
}>;
|