Interface EditorsAndDocumentsDelta

interface EditorsAndDocumentsDelta {
    addedDocuments?: ModelAddedData[];
    addedEditors?: TextEditorAddData[];
    newActiveEditor?: null | string;
    removedDocuments?: UriComponents[];
    removedEditors?: string[];
}

Properties

addedDocuments?: ModelAddedData[]
addedEditors?: TextEditorAddData[]
newActiveEditor?: null | string

undefined means no changes null means no active string means id of active

removedDocuments?: UriComponents[]
removedEditors?: string[]