a3add92c859696f35f0e15b4dba4aa7a03712a5dcc30def9c2e0983e46d1cde6ed0f6a9cbde953e2649970dbd0208cf39c3feff53bef4d8a3d5d27a45cac49 492 B

12345678
  1. import Model from '../model/Model.js';
  2. import langEN from '../i18n/langEN.js';
  3. export declare type LocaleOption = typeof langEN;
  4. export declare const SYSTEM_LANG: string;
  5. export declare function registerLocale(locale: string, localeObj: LocaleOption): void;
  6. export declare function createLocaleObject(locale: string | LocaleOption): LocaleOption;
  7. export declare function getLocaleModel(lang: string): Model<LocaleOption>;
  8. export declare function getDefaultLocaleModel(): Model<LocaleOption>;