class CommandResultimport { CommandResult } from "https://dotland.deno.dev/x/dax@0.39.2/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.