Merge pull request #146185 from microsoft/joh/notebookCleanup

This commit is contained in:
Johannes Rieken
2022-03-30 09:18:44 +02:00
committed by GitHub
17 changed files with 127 additions and 276 deletions

View File

@@ -2075,7 +2075,6 @@ export interface ExtHostNotebookDocumentsShape {
$acceptModelChanged(uriComponents: UriComponents, event: SerializableObjectWithBuffers<NotebookCellsChangedEventDto>, isDirty: boolean, newMetadata?: notebookCommon.NotebookDocumentMetadata): void;
$acceptDirtyStateChanged(uriComponents: UriComponents, isDirty: boolean): void;
$acceptModelSaved(uriComponents: UriComponents): void;
$acceptDocumentPropertiesChanged(uriComponents: UriComponents, data: INotebookDocumentPropertiesChangeData): void;
}
export type INotebookEditorViewColumnInfo = Record<string, number>;