Update gitignore (sorry)

This commit is contained in:
olcxja 2026-05-10 14:02:17 +02:00
commit cca8b02fea
6604 changed files with 1219661 additions and 4 deletions

View file

@ -0,0 +1,22 @@
import { Arch } from "builder-util";
import { MsiOptions } from "../";
import { Target } from "../core";
import { WinPackager } from "../winPackager";
export default class MsiTarget extends Target {
private readonly packager;
readonly outDir: string;
private readonly vm;
readonly options: MsiOptions;
constructor(packager: WinPackager, outDir: string);
/**
* A product-specific string that can be used in an [MSI Identifier](https://docs.microsoft.com/en-us/windows/win32/msi/identifier).
*/
private get productMsiIdPrefix();
private get iconId();
private get upgradeCode();
build(appOutDir: string, arch: Arch): Promise<void>;
private light;
private getCommonWixArgs;
private writeManifest;
private computeFileDeclaration;
}