@ac-essentials/misc-util
    Preparing search index...

    Type Alias ShellExecOptions

    type ShellExecOptions = {
        onStderrLine?: ((line: string) => void) | null;
        outputStream?: Stream.Writable | null;
        spawnOptions?: ShellExecSpawnOptions | null;
    }
    Index

    Properties

    onStderrLine?: ((line: string) => void) | null

    If provided, this function will be called for each line of stderr output.

    outputStream?: Stream.Writable | null

    If provided, both stdout and stderr will be piped to this stream.

    spawnOptions?: ShellExecSpawnOptions | null