forked from olcxjas-softworks/LarpixClient
10 lines
401 B
TypeScript
10 lines
401 B
TypeScript
import { RequestedExecutionLevel } from "../options/winOptions";
|
|
export interface ResourceEditOptions {
|
|
file: string;
|
|
versionStrings: Record<string, string>;
|
|
fileVersion: string;
|
|
productVersion: string;
|
|
requestedExecutionLevel?: RequestedExecutionLevel | null;
|
|
iconPath?: string | null;
|
|
}
|
|
export declare function editWindowsResources(opts: ResourceEditOptions): Promise<void>;
|