interface Deno.SpawnOutput
implements ChildStatus
Deprecated
Deprecated
Use the Deno.Command API instead.
The interface returned from calling Deno.spawn
or
Deno.spawnSync
which represents the result of spawning the
child process.
import { type Deno } from "https://deno.land/x/deno@v1.28.3/cli/tsc/dts/lib.deno.unstable.d.ts";
const { SpawnOutput } = Deno;
UNSTABLE: New API, yet to be vetted.