(cmd: string[], opts: Process.RunOptions = {})
| 20 | .then(() => true) |
| 21 | .catch(() => false) |
| 22 | const run = (cmd: string[], opts: Process.RunOptions = {}) => Process.run(cmd, { ...opts, nothrow: true }) |
| 23 | const output = (cmd: string[], opts: Process.RunOptions = {}) => Process.text(cmd, { ...opts, nothrow: true }) |
| 24 | |
| 25 | export interface Handle { |