@edgible-team/sdk
    Preparing search index...

    Interface RunCommandOptions

    Options for runCommand.

    interface RunCommandOptions {
        cwd?: string;
        env?: ProcessEnv;
        input?: string;
        spawnFn?: SpawnFn;
        timeoutMs?: number;
    }
    Index

    Properties

    cwd?: string
    env?: ProcessEnv
    input?: string

    Data written to the child's stdin (stdin is closed either way).

    spawnFn?: SpawnFn
    timeoutMs?: number

    Kill (SIGKILL) and resolve with exitCode -1 after this many ms. Default 60s.