Notebook cleanup (#20954)

This commit is contained in:
Charles Gagnon
2022-10-24 15:32:42 -07:00
committed by GitHub
parent a64a33e091
commit 5032685162
4 changed files with 25 additions and 16 deletions

View File

@@ -41,8 +41,6 @@ export const RESOURCE_VIEWER_TYPEID = 'workbench.editorInput.resourceViewerInput
export const JUPYTER_PROVIDER_ID = 'jupyter';
export const IPYKERNEL_DISPLAY_NAME = 'Python 3 (ipykernel)';
export const INTERACTIVE_PROVIDER_ID = 'dotnet-interactive';
export const INTERACTIVE_LANGUAGE_MODE = 'dib';
export const DEFAULT_NB_LANGUAGE_MODE = 'notebook';
export const TSGOPS_WEB_QUALITY = 'tsgops-image';
export const CELL_URI_PATH_PREFIX = 'notebook-editor-';
@@ -52,7 +50,8 @@ export const NBFORMAT_MINOR = 2;
export const enum NotebookLanguage {
Notebook = 'notebook',
Ipynb = 'ipynb'
Ipynb = 'ipynb',
Interactive = 'dib'
}
export interface INotebookSearchConfigurationProperties {
exclude: glob.IExpression;