We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SelectKernelReturnArgs
1 parent f89e26a commit d65cc6aCopy full SHA for d65cc6a
src/vs/workbench/api/common/extHostNotebookKernels.ts
@@ -35,7 +35,7 @@ interface IKernelData {
35
}
36
37
type ExtHostSelectKernelArgs = ControllerInfo | { notebookEditor: vscode.NotebookEditor } | ControllerInfo & { notebookEditor: vscode.NotebookEditor } | undefined;
38
-export type SelectKernelReturnArgs = ControllerInfo | { notebookEditorId: string } | ControllerInfo & { notebookEditorId: string } | undefined;
+type SelectKernelReturnArgs = ControllerInfo | { notebookEditorId: string } | ControllerInfo & { notebookEditorId: string } | undefined;
39
type ControllerInfo = { id: string; extension: string };
40
41
0 commit comments