Interface IModelChangedEvent

An event describing that an editor has had its model reset (i.e. editor.setModel()).

interface IModelChangedEvent {
    newModelUrl: Uri;
    oldModelUrl: Uri;
}

Properties

newModelUrl: Uri

The uri of the new model or null.

oldModelUrl: Uri

The uri of the previous model or null.