@oazmi/kitchensink - v0.10.1
    Preparing search index...

    Interface SpawnCommandResult

    the stdout and stderr outputs of the executed process, in binary format.

    interface SpawnCommandResult {
        stdout: Uint8Array<ArrayBuffer>;
        stderr: Uint8Array<ArrayBuffer>;
    }
    Index

    Properties

    Properties

    stdout: Uint8Array<ArrayBuffer>

    stdout contains the regular things logged into your terminal.

    stderr: Uint8Array<ArrayBuffer>

    stderr contains the errors logged into your terminal. if this string is non-empty, it may indicate that some error occurred when your shell command/process was executed.