1 | /// <reference types="node" />
|
2 |
|
3 | import { ChildProcess } from "child_process";
|
4 |
|
5 | export const path: string;
|
6 | export const version: string;
|
7 |
|
8 | export function start(args: readonly string[] | null | undefined, returnPromise: true): Promise<ChildProcess>;
|
9 | export function start(args?: readonly string[], returnPromise?: false): ChildProcess;
|
10 |
|
11 | export function stop(): void;
|
12 |
|
13 | export const defaultInstance: ChildProcess | undefined;
|