class CommandResultRe-exportimport { CommandResult } from "https://deno.land/x/dax@0.33.0/mod.ts"; Result of running a command. ConstructorsnewCommandResult(code: number,stdout: BufferStdio,stderr: BufferStdio,combined: Buffer | undefined,)Propertiesreadonlycode: numberThe exit code. readonlycombined: stringRaw combined stdout and stderr text. readonlycombinedBytes: Uint8ArrayRaw combined stdout and stderr bytes. readonlystderr: stringRaw decoded stdout text. readonlystderrBytes: Uint8ArrayRaw stderr bytes. readonlystderrJson: anyStderr text as JSON. readonlystdout: stringRaw decoded stdout text. readonlystdoutBytes: Uint8ArrayRaw stdout bytes. readonlystdoutJson: anyStdout text as JSON.