UNPKG

@types/opener

Version:
13 lines (9 loc) 283 B
/// <reference types='node' /> import { ChildProcess } from "child_process"; type Callback = (error: Error, stdout: string, stderr: string) => void; declare function opener( args: string | string[], options?: {}, callback?: Callback, ): ChildProcess; export = opener;