import { type ProcessOptions } from "https://deno.land/x/proc@0.22.1/mod.ts";
Options passed to a process.
Properties
optional
fnStderr: StderrHandler<S>Optionally process all lines of stderr
.
optional
fnError: ErrorHandler<S>Optionally override error handling.
Turn on input buffering.
Buffering input can improve performance in some cases, but it can also change behavior in subtle ways - in particular if you are expecting a process to respond immediately to written input on an open stream. To prevent confusion, buffering is turned off by default.