@eclipse-che/plugin
Advanced tools
Comparing version 0.0.1-1548145852 to 0.0.1-1548234025
{ | ||
"name": "@eclipse-che/plugin", | ||
"version": "0.0.1-1548145852", | ||
"version": "0.0.1-1548234025", | ||
"description": "Eclipse Che specific Theia plugin API", | ||
@@ -5,0 +5,0 @@ "publishConfig": { |
@@ -92,2 +92,3 @@ /********************************************************************* | ||
export function registerTaskRunner(type: string, runner: TaskRunner): Promise<Disposable>; | ||
/** Needs to be executed when the task is finished */ | ||
export function fireTaskExited(id: number): Promise<void>; | ||
@@ -122,2 +123,8 @@ } | ||
export interface TaskConfiguration { | ||
/** | ||
* Source of the task configuration. | ||
* For a configured task, it is the name of the root folder, while for a provided task, it is the name of the provider. | ||
*/ | ||
readonly source: string; | ||
/** A label that uniquely identifies a task configuration per source */ | ||
readonly type: string; | ||
@@ -124,0 +131,0 @@ /** A label that uniquely identifies a task configuration */ |
6896
123