Interface representing expected arguments for a task, including a task name, an optional project name, and additional dynamic key-value pairs.

ExpectedArguments

interface ExpectedArguments {
    name: string;
    projectName?: string;
}

Hierarchy

  • Record<string, string | number>
    • ExpectedArguments

Properties

Properties

name: string

The name of the task.

projectName?: string

The name of the project (optional).

Generated using TypeDoc