(x: ChildProcess.CommandInput | undefined)
| 110 | opts.extendEnv ? { ...globalThis.process.env, ...opts.env } : opts.env |
| 111 | |
| 112 | const input = (x: ChildProcess.CommandInput | undefined): NodeChildProcess.IOType | undefined => |
| 113 | Stream.isStream(x) ? "pipe" : x |
| 114 | |
| 115 | const output = (x: ChildProcess.CommandOutput | undefined): NodeChildProcess.IOType | undefined => |
| 116 | Sink.isSink(x) ? "pipe" : x |