Initial commit
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
import { LinuxPackager } from "../linuxPackager";
|
||||
import { LinuxTargetSpecificOptions } from "../options/linuxOptions";
|
||||
import { IconInfo } from "../platformPackager";
|
||||
export declare const installPrefix = "/opt";
|
||||
export declare class LinuxTargetHelper {
|
||||
private packager;
|
||||
private readonly iconPromise;
|
||||
private readonly mimeTypeFilesPromise;
|
||||
maxIconPath: string | null;
|
||||
constructor(packager: LinuxPackager);
|
||||
get icons(): Promise<Array<IconInfo>>;
|
||||
get mimeTypeFiles(): Promise<string | null>;
|
||||
private computeMimeTypeFiles;
|
||||
private computeDesktopIcons;
|
||||
getDescription(options: LinuxTargetSpecificOptions): string;
|
||||
getSanitizedVersion(target: string): string;
|
||||
writeDesktopEntry(targetSpecificOptions: LinuxTargetSpecificOptions, exec?: string, destination?: string | null, extra?: Record<string, string>): Promise<string>;
|
||||
computeDesktopEntry(targetSpecificOptions: LinuxTargetSpecificOptions, exec?: string, extra?: Record<string, string>): Promise<string>;
|
||||
}
|
||||
Reference in New Issue
Block a user