Provides properties and methods to create a language selector.
class TranslatableLanguageList {
constructor( translate: TranslationService, key: string );
selectedIndex: number;
selectedValue: string;
readonly selectedText: string;
readonly selectedItem: TranslatableOption;
next(): IteratorResult< TranslatableOption >;
[Symbol.iterator](): IterableIterator< TranslatableOption >;
}
Creates a new instance of the language list.
Gets or sets the index of the selected language.
Gets or sets the value of the selected language.
Gets the translated text of the selected language.
Gets the selected language item.
Returns the next iterator result.
Returns the iterator of the list.