Present kernel detection progress in kernel picker/status (#166294)

* Experimental kernel detection task

* Update kernel detection progress

* no need for start/end now.

* Enforce proposed api
This commit is contained in:
Peng Lyu
2022-11-14 09:34:29 -08:00
committed by GitHub
parent 73d882bcf7
commit 069ab7c4af
9 changed files with 119 additions and 2 deletions

View File

@@ -4,4 +4,17 @@
*--------------------------------------------------------------------------------------------*/
declare module 'vscode' {
export interface NotebookControllerDetectionTask {
/**
* Dispose and remove the detection task.
*/
dispose(): void;
}
export namespace notebooks {
/**
* Create notebook controller detection task
*/
export function createNotebookControllerDetectionTask(notebookType: string): NotebookControllerDetectionTask;
}
}