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

    Interface RunCommandResultOptions

    Options for runCommandResult (buffered execution).

    interface RunCommandResultOptions {
        cwd?: string | URL;
        env?: ProcessEnv;
        timeoutMs?: number;
    }
    Index

    Properties

    Properties

    cwd?: string | URL

    Working directory for the child process.

    env?: ProcessEnv

    Environment variables for the child process. Undefined values are dropped.

    timeoutMs?: number

    Optional timeout (ms). Kills the child with SIGKILL on expiry.