interface TaskDto {
    detail?: string;
    executionId?: string;
    group?: {
        isDefault: boolean;
        kind: TaskGroupKind;
    };
    label: string;
    presentation?: TaskPresentationOptionsDTO;
    problemMatcher?: any;
    runOptions?: RunOptionsDTO;
    scope: string | number;
    source?: string;
    taskType?: "shell" | "process" | "customExecution";
    type: string;
    [key: string]: any;
}

Hierarchy (view full)

Indexable

[key: string]: any

Properties

detail?: string
executionId?: string
group?: {
    isDefault: boolean;
    kind: TaskGroupKind;
}

Type declaration

label: string
problemMatcher?: any
runOptions?: RunOptionsDTO
scope: string | number
source?: string
taskType?: "shell" | "process" | "customExecution"
type: string