Change how supported task executions are set

Fixes #103039
This commit is contained in:
Alex Ross
2020-07-23 11:14:47 +02:00
parent 080eae73cd
commit 76b7d04718
6 changed files with 24 additions and 11 deletions

View File

@@ -787,6 +787,7 @@ export interface MainThreadTaskShape extends IDisposable {
$terminateTask(id: string): Promise<void>;
$registerTaskSystem(scheme: string, info: tasks.TaskSystemInfoDTO): void;
$customExecutionComplete(id: string, result?: number): Promise<void>;
$registerSupportedExecutions(custom?: boolean, shell?: boolean, process?: boolean): Promise<void>;
}
export interface MainThreadExtensionServiceShape extends IDisposable {