Interface TaskTemplateEntry

The representation of a task template used in the auto-generation of tasks.json

interface TaskTemplateEntry {
    autoDetect: boolean;
    content: string;
    description: string;
    id: string;
    label: string;
    sort?: string;
}

Properties

autoDetect: boolean
content: string
description: string
id: string
label: string
sort?: string