Upsilon-VsCode/Client/node_modules/vscode-languageclient/lib/utils/electron.d.ts

10 lines
337 B
TypeScript
Raw Normal View History

2019-02-17 17:07:28 +00:00
/// <reference types="node" />
import * as cp from 'child_process';
export interface IForkOpts {
cwd?: string;
env?: any;
encoding?: string;
execArgv?: string[];
}
export declare function fork(modulePath: string, args: string[], options: IForkOpts, callback: (error: any, cp: cp.ChildProcess | undefined) => void): void;