Interface TaskCustomOptions

Represents the options used for running a task.

interface TaskCustomOptions {
    config: TaskConfiguration;
    context?: string;
    label: string;
    process: Process;
}

Hierarchy (view full)

Properties

The task configuration which should be executed

context?: string

The optional execution context

label: string

The task label

process: Process