Represents a class for executing a specific task in the application.

Constructors

Properties

Methods

Constructors

  • Creates an instance of _Run.

    Parameters

    • taskName: string

      The name of the task to be executed.

    • projectName: undefined | string

      The name of the project.

    • Optional otherArguments: Record<string, string | number>

      Additional arguments for the task.

    Returns Run

Properties

otherArguments?: Record<string, string | number>

Additional arguments for the task.

projectName: undefined | string

The name of the project.

taskName: string

The name of the task to be executed.

Methods

  • Runs the specified task along with optional arguments.

    Returns Promise<void>

    A Promise that resolves when the task is completed.

Generated using TypeDoc