@esri/calcite-components
Version:
Web Components for Esri's Calcite Design System.
14 lines (12 loc) • 394 B
TypeScript
/**
* Represents any BCP 47 locale code used for formatting and parsing numbers.
*
* For locales that are used for translations, please use the `SupportedLocale` type from `@arcgis/toolkit/intl`.
*/
export type Locale = HTMLElement["lang"];
export type NumberingSystem = (typeof numberingSystems)[number];
export const numberingSystems: readonly [
"arab",
"arabext",
"latn"
];