Interface NotebookDocumentsAndEditorsDelta

interface NotebookDocumentsAndEditorsDelta {
    addedDocuments?: NotebookModelAddedData[];
    addedEditors?: NotebookEditorAddData[];
    newActiveEditor?: null | string;
    removedDocuments?: UriComponents[];
    removedEditors?: string[];
    visibleEditors?: string[];
}

Properties

addedDocuments?: NotebookModelAddedData[]
addedEditors?: NotebookEditorAddData[]
newActiveEditor?: null | string
removedDocuments?: UriComponents[]
removedEditors?: string[]
visibleEditors?: string[]