The init input, which contains the program arguments.

interface IActionInit {
    argv: string[];
    context: IActionContext;
    env: Record<string, undefined | string>;
    stdin: Readable;
}

Hierarchy (view full)

Properties

Properties

argv: string[]

The list of program arguments.

The input context that is passed through by actors.

env: Record<string, undefined | string>

The mapping of environment variables.

stdin: Readable

A standard input stream.