@@ -23,10 +23,10 @@ import { IStorageService } from 'vs/platform/storage/common/storage';
23
23
import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry' ;
24
24
import { IThemeService } from 'vs/platform/theme/common/themeService' ;
25
25
import { EditorPane } from 'vs/workbench/browser/parts/editor/editorPane' ;
26
- import { DEFAULT_EDITOR_ASSOCIATION , EditorInputCapabilities , EditorPaneSelectionChangeReason , EditorPaneSelectionCompareResult , EditorResourceAccessor , IEditorMemento , IEditorOpenContext , IEditorPaneSelection , IEditorPaneSelectionChangeEvent , IEditorPaneWithSelection } from 'vs/workbench/common/editor' ;
26
+ import { DEFAULT_EDITOR_ASSOCIATION , EditorInputCapabilities , EditorPaneSelectionChangeReason , EditorPaneSelectionCompareResult , EditorResourceAccessor , IEditorMemento , IEditorOpenContext , IEditorPaneSelection , IEditorPaneSelectionChangeEvent } from 'vs/workbench/common/editor' ;
27
27
import { EditorInput } from 'vs/workbench/common/editor/editorInput' ;
28
28
import { SELECT_KERNEL_ID } from 'vs/workbench/contrib/notebook/browser/controller/coreActions' ;
29
- import { INotebookEditorOptions , INotebookEditorViewState } from 'vs/workbench/contrib/notebook/browser/notebookBrowser' ;
29
+ import { INotebookEditorOptions , INotebookEditorPane , INotebookEditorViewState } from 'vs/workbench/contrib/notebook/browser/notebookBrowser' ;
30
30
import { IBorrowValue , INotebookEditorService } from 'vs/workbench/contrib/notebook/browser/services/notebookEditorService' ;
31
31
import { NotebookEditorWidget } from 'vs/workbench/contrib/notebook/browser/notebookEditorWidget' ;
32
32
import { NotebooKernelActionViewItem } from 'vs/workbench/contrib/notebook/browser/viewParts/notebookKernelActionViewItem' ;
@@ -40,7 +40,7 @@ import { IEditorService } from 'vs/workbench/services/editor/common/editorServic
40
40
41
41
const NOTEBOOK_EDITOR_VIEW_STATE_PREFERENCE_KEY = 'NotebookEditorViewState' ;
42
42
43
- export class NotebookEditor extends EditorPane implements IEditorPaneWithSelection {
43
+ export class NotebookEditor extends EditorPane implements INotebookEditorPane {
44
44
static readonly ID : string = NOTEBOOK_EDITOR_ID ;
45
45
46
46
private readonly _editorMemento : IEditorMemento < INotebookEditorViewState > ;
0 commit comments