Data interface for the type of an actor run result.

interface IActorOutputInit {
    stderr?: Readable;
    stdout?: Readable;
}

Hierarchy (view full)

Properties

Properties

stderr?: Readable

A standard error output stream.

stdout?: Readable

A standard output stream.