Language Option

interface LanguageOption

This interface governs the language options shown in the Settings Page Component.

Language options
Language options
language-option.interface.ts
export interface LanguageOption {
  directionality: 'ltr' | 'rtl';
  font: AvailableFont;
  icon: string;
  nameKey: string;
  value: AvailableLanguage;
}

Last updated