Comunica
    Preparing search index...

    Interface IActionInit

    The init input, which contains the program arguments.

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

    Hierarchy (View Summary)

    Index

    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.