1 | /// <reference types='node' />
|
2 |
|
3 | import { ChildProcess } from "child_process";
|
4 |
|
5 | type Callback = (error: Error, stdout: string, stderr: string) => void;
|
6 | declare function opener(
|
7 | args: string | string[],
|
8 | options?: {},
|
9 | callback?: Callback,
|
10 | ): ChildProcess;
|
11 |
|
12 | export = opener;
|