Interface IModelLanguageChangedEvent

Expand description

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

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

Properties§

§readonly newLanguage: string

New language

§readonly oldLanguage: string

Previous language

§readonly source: string

Source of the call that caused the event.