NotebookControllerOptions instead of NotebookKernelOptions

This commit is contained in:
Johannes Rieken
2021-04-15 13:00:52 +02:00
parent f5bfd64982
commit 0aabafd35f
2 changed files with 3 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ export class ExtHostNotebookKernels implements ExtHostNotebookKernelsShape {
this._proxy = mainContext.getProxy(MainContext.MainThreadNotebookKernels);
}
createKernel(extension: IExtensionDescription, options: vscode.NotebookKernelOptions): vscode.NotebookController {
createKernel(extension: IExtensionDescription, options: vscode.NotebookControllerOptions): vscode.NotebookController {
const handle = this._handlePool++;
const that = this;