Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Deno.SpawnOutput

interface SpawnOutput <T extends SpawnOptions> {
status: ChildStatus;
stderr: T["stderr"] extends "inherit" | "null" ? null : Uint8Array;
stdout: T["stdout"] extends "inherit" | "null" ? null : Uint8Array;
}

§Type Parameters

§Properties

§
stderr: T["stderr"] extends "inherit" | "null" ? null : Uint8Array
[src]
§
stdout: T["stdout"] extends "inherit" | "null" ? null : Uint8Array
[src]