7 lines
355 B
TypeScript
7 lines
355 B
TypeScript
|
/// <reference types="node" />
|
||
|
import { ExecFileOptions } from "child_process";
|
||
|
/** @private */
|
||
|
export declare function execWine(file: string, file64?: string | null, appArgs?: Array<string>, options?: ExecFileOptions): Promise<string>;
|
||
|
/** @private */
|
||
|
export declare function prepareWindowsExecutableArgs(args: Array<string>, exePath: string): string[];
|