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

@@ -681,4 +681,9 @@ export class MainThreadTask implements MainThreadTaskShape {
}
});
}
async $registerSupportedExecutions(custom?: boolean, shell?: boolean, process?: boolean): Promise<void> {
return this._taskService.registerSupportedExecutions(custom, shell, process);
}
}