@karmaniverous/jeeves
    Preparing search index...

    Interface RunOptions

    Options for synchronous command execution.

    interface RunOptions {
        encoding?: BufferEncoding;
        maxBuffer?: number;
        shell?: boolean;
        timeout?: number;
    }
    Index

    Properties

    encoding?: BufferEncoding

    Output encoding (default utf8).

    maxBuffer?: number

    Max stdout/stderr buffer size in bytes.

    shell?: boolean

    Run command through the shell.

    timeout?: number

    Execution timeout in milliseconds.