Interface TaskProcessOptions

Represents the options used for running a task.

interface TaskProcessOptions {
    command?: string;
    config: TaskConfiguration;
    context?: string;
    label: string;
    process: Process;
    processType: ProcessType;
}

Hierarchy (view full)

Properties

command?: string

The task configuration which should be executed

context?: string

The optional execution context

label: string

The task label

process: Process
processType: ProcessType