// Type definitions for opener 1.4 // Project: https://github.com/domenic/opener // Definitions by: Rahul Ravikumar // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// 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;