@karmaniverous/get-dotenv
    Preparing search index...

    Interface RunCommandResult

    Result object returned by runCommandResult.

    interface RunCommandResult {
        exitCode: number;
        stderr: string;
        stdout: string;
    }
    Index

    Properties

    exitCode: number

    Exit code of the child process.

    Conventionally, 0 indicates success.

    stderr: string

    Captured standard error (stderr) as UTF-8 text.

    stdout: string

    Captured standard output (stdout) as UTF-8 text.