UNPKG

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