Skip to content

Commit

Permalink
Don't export SelectKernelReturnArgs (#164944)
Browse files Browse the repository at this point in the history
  • Loading branch information
joyceerhl authored Oct 29, 2022
1 parent f89e26a commit d65cc6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/api/common/extHostNotebookKernels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ interface IKernelData {
}

type ExtHostSelectKernelArgs = ControllerInfo | { notebookEditor: vscode.NotebookEditor } | ControllerInfo & { notebookEditor: vscode.NotebookEditor } | undefined;
export type SelectKernelReturnArgs = ControllerInfo | { notebookEditorId: string } | ControllerInfo & { notebookEditorId: string } | undefined;
type SelectKernelReturnArgs = ControllerInfo | { notebookEditorId: string } | ControllerInfo & { notebookEditorId: string } | undefined;
type ControllerInfo = { id: string; extension: string };


Expand Down

0 comments on commit d65cc6a

Please sign in to comment.