mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 03:54:24 +01:00
Task query and execution polish
This commit is contained in:
@@ -11,10 +11,6 @@ export interface TaskDefinitionDTO {
|
||||
[name: string]: any;
|
||||
}
|
||||
|
||||
export interface TaskExecutionDTO {
|
||||
id: string;
|
||||
}
|
||||
|
||||
export interface TaskPresentationOptionsDTO {
|
||||
reveal?: number;
|
||||
echo?: boolean;
|
||||
@@ -85,4 +81,9 @@ export interface TaskDTO {
|
||||
presentationOptions: TaskPresentationOptionsDTO;
|
||||
problemMatchers: string[];
|
||||
hasDefinedMatchers: boolean;
|
||||
}
|
||||
|
||||
export interface TaskExecutionDTO {
|
||||
id: string;
|
||||
task: TaskDTO;
|
||||
}
|
||||
Reference in New Issue
Block a user