Failing test: Revert "Add isDefault to TaskGroup API (#128596)"

This reverts commit 48975dc080.
This commit is contained in:
Alex Ross
2021-07-16 10:16:16 +02:00
parent 5f09d73d6f
commit cbde02b886
10 changed files with 25 additions and 94 deletions

View File

@@ -82,11 +82,6 @@ export interface TaskHandleDTO {
workspaceFolder: UriComponents | string;
}
export interface TaskGroupDTO {
isDefault?: boolean;
_id: string;
}
export interface TaskDTO {
_id: string;
name?: string;
@@ -94,7 +89,7 @@ export interface TaskDTO {
definition: TaskDefinitionDTO;
isBackground?: boolean;
source: TaskSourceDTO;
group?: TaskGroupDTO;
group?: string;
detail?: string;
presentationOptions?: TaskPresentationOptionsDTO;
problemMatchers: string[];