class CommandResultRe-exportimport { CommandResult } from "https://deno.land/x/dax@0.31.1/mod.ts"; Result of running a command. ConstructorsnewCommandResult(code: number,stdout: BufferStdio,stderr: BufferStdio,combined: Buffer | undefined,)Propertiesreadonlycode: numberThe exit code. readonlycombinedRaw combined stdout and stderr text. readonlycombinedBytes: Uint8ArrayRaw combined stdout and stderr bytes. readonlystderrRaw decoded stdout text. readonlystderrBytes: Uint8ArrayRaw stderr bytes. readonlystderrJsonStderr text as JSON. readonlystdoutRaw decoded stdout text. readonlystdoutBytes: Uint8ArrayRaw stdout bytes. readonlystdoutJsonStdout text as JSON.