1 | /// <reference types="node" />
|
2 | import { SpawnOptions, ExecFileOptions } from "child_process";
|
3 | import { ExtraSpawnOptions } from "builder-util";
|
4 | import { VmManager } from "./vm";
|
5 | export declare class WineVmManager extends VmManager {
|
6 | constructor();
|
7 | exec(file: string, args: Array<string>, options?: ExecFileOptions, isLogOutIfDebug?: boolean): Promise<string>;
|
8 | spawn(file: string, args: Array<string>, options?: SpawnOptions, extraOptions?: ExtraSpawnOptions): Promise<any>;
|
9 | toVmFile(file: string): string;
|
10 | }
|