Interface IModelLanguageChangedEvent

An event describing that the current language associated with a model has changed.

interface IModelLanguageChangedEvent {
    newLanguage: string;
    oldLanguage: string;
    source: string;
}

Properties

newLanguage: string

New language

oldLanguage: string

Previous language

source: string

Source of the call that caused the event.