@ui5/webcomponents-localization
Version:
Localization for UI5 Web Components
18 lines (17 loc) • 627 B
TypeScript
/**
* OpenUI5 Configuration Shim
*/
declare const Configuration: {
getLanguage: () => string | undefined;
getCalendarType: () => import("@ui5/webcomponents-base/dist/types/CalendarType.js").default;
getSupportedLanguages: () => string[] | null;
getOriginInfo: () => void;
getFormatSettings: () => {
getFormatLocale: (lang?: string) => import("@ui5/webcomponents-base/dist/locale/Locale.js").default;
getLegacyDateFormat: () => void;
getCustomLocaleData: () => void;
};
getTimezone: () => string;
getCalendarWeekNumbering: () => string;
};
export default Configuration;