-
Notifications
You must be signed in to change notification settings - Fork 31.8k
/
Copy pathvscode.proposed.taskProblemMatcherStatus.d.ts
42 lines (32 loc) · 1.24 KB
/
vscode.proposed.taskProblemMatcherStatus.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
declare module 'vscode' {
export interface TaskProblemMatcherStartedEvent {
/**
* The task item representing the task for which the problem matcher processing started.
*/
readonly execution: TaskExecution;
}
export interface TaskProblemMatcherEndedEvent {
/**
* The task item representing the task for which the problem matcher processing ended.
*/
readonly execution: TaskExecution;
/**
* Whether errors were found during the task execution
*/
readonly hasErrors: boolean;
}
export namespace tasks {
/**
* An event that is emitted when the task's problem matchers start processing lines.
*/
export const onDidStartTaskProblemMatchers: Event<TaskProblemMatcherStartedEvent>;
/**
* An event that is emitted when the task problem matchers have finished processing lines.
*/
export const onDidEndTaskProblemMatchers: Event<TaskProblemMatcherEndedEvent>;
}
}