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

    Interface ExecShellCommandResult

    the output of the executed shell command.

    interface ExecShellCommandResult {
        stdout: string;
        stderr: string;
    }
    Index

    Properties

    Properties

    stdout: string

    stdout contains the regular things logged into your terminal.

    stderr: string

    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.