Remove hasEditor from ICellEditorProvider (#22145)

This commit is contained in:
Charles Gagnon
2023-03-06 11:02:41 -08:00
committed by GitHub
parent c882aeddb0
commit a657aa6cb5
5 changed files with 2 additions and 17 deletions

View File

@@ -194,10 +194,9 @@ export interface INotebookSection {
}
export interface ICellEditorProvider {
hasEditor(): boolean;
isCellOutput: boolean;
cellGuid(): string;
getEditor(): BaseTextEditor<ICodeEditorViewState>;
getEditor(): BaseTextEditor<ICodeEditorViewState> | undefined;
deltaDecorations(newDecorationsRange: NotebookRange | NotebookRange[], oldDecorationsRange: NotebookRange | NotebookRange[]): void;
}