nwixtoolset
Version:
Node module wrapper around the WIX Toolset executables.
16 lines (15 loc) • 520 B
TypeScript
import { RunResult, RunOptions } from "./run";
/**
* WIX Toolset library rebuilder.
*
* @param src The wixlib file to rebuild.
* @param [options] Options for the retina exe.
*/
export declare function retina(src: string, options?: RetinaOptions): Promise<RunResult>;
/** Options for the Retina executable. */
export interface RetinaOptions extends RunOptions {
/** Specify output file (default: write to current directory). */
out?: string;
/** Verbose output. */
verbose?: boolean;
}